.vhp {
    --vhp-radius: 18px;
    --vhp-radius-sm: 12px;
    --vhp-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    --vhp-blur: blur(18px);
    box-sizing: border-box;
    color: var(--vhp-text, #e2e8f0);
    margin: 0 auto 40px;
    max-width: 1280px;
    padding: 0 20px;
    width: 100%;
}

.vhp *, .vhp *::before, .vhp *::after { box-sizing: border-box; }

.vhp-glass {
    backdrop-filter: var(--vhp-blur);
    -webkit-backdrop-filter: var(--vhp-blur);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vhp-radius);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

[data-vhp-theme="light"] .vhp-glass {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(15, 23, 42, 0.08);
}

.vhp-badge {
    background: linear-gradient(135deg, var(--vhp-primary, #6366f1), var(--vhp-secondary, #8b5cf6));
    border-radius: 999px;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    padding: 6px 12px;
    text-transform: uppercase;
}

.vhp-badge--soft {
    background: rgba(99, 102, 241, 0.15);
    color: var(--vhp-accent, #a78bfa);
}

.vhp-btn {
    align-items: center;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    padding: 12px 22px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vhp-btn--primary {
    background: linear-gradient(135deg, var(--vhp-primary, #6366f1), var(--vhp-secondary, #8b5cf6));
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35);
    color: #fff;
}

.vhp-btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--vhp-text, #e2e8f0);
}

.vhp-btn--block { width: 100%; }

.vhp-btn:hover, .vhp-btn:focus {
    box-shadow: 0 16px 36px rgba(99, 102, 241, 0.42);
    color: #fff;
    transform: translateY(-2px);
}

.vhp-hover-card { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease; }
.vhp-hover-card:hover { border-color: rgba(167, 139, 250, 0.45); box-shadow: var(--vhp-shadow); transform: translateY(-6px); }

.vhp-announce {
    background: linear-gradient(90deg, var(--vhp-primary, #6366f1), var(--vhp-secondary, #8b5cf6));
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
}

.vhp-announce__inner { padding: 10px 18px; text-align: center; }
.vhp-announce a, .vhp-announce p { color: #fff; font-size: 13px; font-weight: 600; margin: 0; text-decoration: none; }

.vhp-hero {
    margin-bottom: 40px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    position: relative;
    width: 100vw;
}

.vhp-hero__shell {
    border: 1px solid rgba(167, 139, 250, 0.22);
    border-radius: 0;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 30px 80px rgba(15, 23, 42, 0.45),
        0 0 60px rgba(99, 102, 241, 0.12);
    isolation: isolate;
    overflow: hidden;
    position: relative;
}

.vhp-hero__mesh {
    animation: vhp-mesh-shift 14s ease-in-out infinite;
    background:
        radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.35), transparent 42%),
        radial-gradient(circle at 85% 15%, rgba(139, 92, 246, 0.28), transparent 38%),
        radial-gradient(circle at 70% 85%, rgba(59, 130, 246, 0.2), transparent 40%),
        linear-gradient(135deg, #0f172a 0%, #1e1b4b 45%, #312e81 100%);
    inset: 0;
    position: absolute;
    z-index: 0;
}

.vhp-hero__orbs { inset: 0; overflow: hidden; pointer-events: none; position: absolute; z-index: 1; }

.vhp-hero__orb {
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.55;
    position: absolute;
}

.vhp-hero__orb--1 {
    animation: vhp-orb-drift 10s ease-in-out infinite;
    background: rgba(139, 92, 246, 0.45);
    height: 220px;
    right: 12%;
    top: -40px;
    width: 220px;
}

.vhp-hero__orb--2 {
    animation: vhp-orb-drift 12s ease-in-out infinite reverse;
    background: rgba(99, 102, 241, 0.35);
    bottom: -60px;
    height: 180px;
    left: 8%;
    width: 180px;
}

.vhp-hero__orb--3 {
    animation: vhp-orb-drift 9s ease-in-out infinite;
    animation-delay: -3s;
    background: rgba(59, 130, 246, 0.25);
    height: 120px;
    right: 35%;
    top: 45%;
    width: 120px;
}

.vhp-hero__swiper { position: relative; z-index: 2; }

.vhp-hero__slide {
    min-height: 440px;
    padding: 52px clamp(20px, 5vw, 72px) 88px;
    position: relative;
}

.vhp-hero__slide-bg {
    background-image: var(--vhp-slide-bg, none);
    background-position: center;
    background-size: cover;
    inset: 0;
    opacity: 0.22;
    position: absolute;
    z-index: 0;
}

.vhp-hero__slide-bg::after {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.55) 55%, rgba(15, 23, 42, 0.35) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.vhp-hero__slide--0 { --vhp-slide-accent: #818cf8; --vhp-slide-glow: rgba(99, 102, 241, 0.35); }
.vhp-hero__slide--1 { --vhp-slide-accent: #a78bfa; --vhp-slide-glow: rgba(139, 92, 246, 0.35); }
.vhp-hero__slide--2 { --vhp-slide-accent: #60a5fa; --vhp-slide-glow: rgba(59, 130, 246, 0.35); }

.vhp-hero__grid {
    align-items: center;
    display: grid;
    gap: 32px;
    grid-template-columns: 1.05fr 0.95fr;
    margin: 0 auto;
    max-width: 1280px;
    min-height: 340px;
    position: relative;
    z-index: 2;
}

.vhp-hero__content-inner {
    animation: vhp-hero-content-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.swiper-slide-active .vhp-hero__content-inner {
    animation: vhp-hero-content-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.vhp-hero__badge {
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    gap: 6px;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    padding: 7px 14px;
    text-transform: uppercase;
}

.vhp-hero__badge i { color: var(--vhp-slide-accent, var(--vhp-accent)); }

.vhp-hero__eyebrow {
    color: var(--vhp-slide-accent, var(--vhp-accent));
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.vhp-hero__title {
    background: linear-gradient(135deg, #ffffff 20%, rgba(255, 255, 255, 0.82) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0 0 18px;
    max-width: 640px;
}

.vhp-hero__desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 26px;
    max-width: 540px;
}

.vhp-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

.vhp-btn--glow {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 16px 40px var(--vhp-slide-glow, rgba(99, 102, 241, 0.35));
}

.vhp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vhp-hero__trust li {
    align-items: center;
    color: rgba(255, 255, 255, 0.62);
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    gap: 6px;
}

.vhp-hero__trust i { color: #34d399; font-size: 14px; }

.vhp-hero__visual {
    min-height: 300px;
    perspective: 900px;
    position: relative;
}

.vhp-hero__card {
    backdrop-filter: blur(16px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
    color: #fff;
}

.vhp-hero__card--main {
    animation: vhp-card-float 6s ease-in-out infinite;
    left: 50%;
    padding: 28px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(100%, 320px);
}

.vhp-hero__card--float {
    align-items: center;
    animation: vhp-card-float-side 5s ease-in-out infinite;
    animation-delay: -2s;
    bottom: 8%;
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    position: absolute;
    right: 0;
    width: 210px;
}

.vhp-hero__card--float i {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--vhp-slide-accent, var(--vhp-accent));
    display: inline-flex;
    flex-shrink: 0;
    font-size: 20px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.vhp-hero__badge i,
.vhp-hero__card--float i {
    line-height: 1;
}

.vhp-hero__card--float strong { display: block; font-size: 14px; }
.vhp-hero__card--float small { color: rgba(255, 255, 255, 0.55); font-size: 11px; }

.vhp-hero__card-head {
    align-items: center;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.vhp-hero__pulse {
    animation: vhp-pulse 2s ease infinite;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
    display: inline-block;
    height: 8px;
    width: 8px;
}

.vhp-hero__metric {
    display: block;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}

.vhp-hero__metric-label { color: rgba(255, 255, 255, 0.55); font-size: 13px; }

.vhp-hero__bars {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.vhp-hero__bars span {
    animation: vhp-bar-grow 1.2s ease both;
    background: linear-gradient(90deg, var(--vhp-slide-accent, var(--vhp-primary)), rgba(255, 255, 255, 0.25));
    border-radius: 999px;
    display: block;
    height: 6px;
    width: var(--w, 80%);
}

.vhp-hero__bars span:nth-child(2) { animation-delay: 0.15s; }
.vhp-hero__bars span:nth-child(3) { animation-delay: 0.3s; }

.vhp-hero__rings {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.vhp-hero__rings span {
    animation: vhp-ring-spin 8s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    border-top-color: var(--vhp-slide-accent, var(--vhp-accent));
    height: 34px;
    width: 34px;
}

.vhp-hero__rings span:nth-child(2) { animation-duration: 6s; height: 44px; width: 44px; }
.vhp-hero__rings span:nth-child(3) { animation-duration: 10s; height: 28px; width: 28px; }

.vhp-hero__cpu {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 18px;
}

.vhp-hero__cpu span {
    animation: vhp-cpu-blink 1.4s ease-in-out infinite;
    background: linear-gradient(180deg, var(--vhp-slide-accent, var(--vhp-primary)), rgba(255, 255, 255, 0.15));
    border-radius: 6px;
    height: 36px;
}

.vhp-hero__cpu span:nth-child(2) { animation-delay: 0.2s; }
.vhp-hero__cpu span:nth-child(3) { animation-delay: 0.4s; }
.vhp-hero__cpu span:nth-child(4) { animation-delay: 0.6s; }

.vhp-hero__controls {
    align-items: center;
    bottom: 24px;
    display: flex;
    gap: 16px;
    left: 48px;
    position: absolute;
    right: 48px;
    z-index: 5;
}

.vhp-hero__pagination {
    display: flex !important;
    flex: 1;
    gap: 8px;
    position: static !important;
    width: auto !important;
}

.vhp-hero__pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    flex: 1;
    height: 4px;
    margin: 0 !important;
    max-width: 56px;
    opacity: 1;
    transition: background 0.35s ease, transform 0.35s ease;
    width: auto;
}

.vhp-hero__pagination .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, var(--vhp-primary), var(--vhp-secondary));
    box-shadow: 0 0 16px rgba(99, 102, 241, 0.55);
    transform: scaleY(1.6);
}

.vhp-hero__nav { display: flex; gap: 8px; }

.vhp-hero__arrow {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
    width: 42px;
}

.vhp-hero__arrow:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: scale(1.06);
}

.vhp-hero__progress {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    bottom: 0;
    height: 3px;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
}

.vhp-hero__progress span {
    background: linear-gradient(90deg, var(--vhp-primary), var(--vhp-secondary));
    display: block;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    width: 100%;
}

.vhp-hero__progress.is-running span {
    animation: vhp-progress-fill 6.5s linear forwards;
}

@media (prefers-reduced-motion: reduce) {
    .vhp-hero__mesh,
    .vhp-hero__orb,
    .vhp-hero__card--main,
    .vhp-hero__card--float,
    .vhp-hero__pulse,
    .vhp-hero__bars span,
    .vhp-hero__rings span,
    .vhp-hero__cpu span,
    .vhp-hero__content-inner,
    .vhp-hero__progress span {
        animation: none !important;
    }
}

@keyframes vhp-mesh-shift {
    0%, 100% { filter: hue-rotate(0deg); transform: scale(1); }
    50% { filter: hue-rotate(12deg); transform: scale(1.03); }
}

@keyframes vhp-orb-drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(16px, -20px); }
}

@keyframes vhp-hero-content-in {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}

@keyframes vhp-card-float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes vhp-card-float-side {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes vhp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

@keyframes vhp-bar-grow {
    from { transform: scaleX(0); transform-origin: left; }
    to { transform: scaleX(1); transform-origin: left; }
}

@keyframes vhp-ring-spin {
    to { transform: rotate(360deg); }
}

@keyframes vhp-cpu-blink {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 1; }
}

@keyframes vhp-progress-fill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.vhp-section { margin-bottom: 56px; }
.vhp-section__head { margin-bottom: 28px; text-align: center; }
.vhp-section__head h2, .vhp-section__head h3 { color: var(--vhp-text, #e2e8f0); font-size: clamp(26px, 3vw, 34px); font-weight: 800; margin: 0 0 10px; }
.vhp-section__head p { color: var(--vhp-muted, #94a3b8); margin: 0 auto; max-width: 680px; }
.vhp-section__head--left { align-items: center; display: flex; gap: 16px; text-align: left; }
.vhp-section__head--left p { margin: 0; }
.vhp-section__icon { align-items: center; background: rgba(99, 102, 241, 0.15); border-radius: 14px; color: var(--vhp-accent); display: inline-flex; font-size: 24px; height: 56px; justify-content: center; width: 56px; }
.vhp-section__actions { margin-top: 24px; text-align: center; }

.vhp-domain__form { margin: 0 auto 24px; max-width: 760px; padding: 10px; }
.vhp-domain__row { align-items: center; display: grid; gap: 10px; grid-template-columns: auto 1fr auto; padding: 8px 10px; }
.vhp-domain__row i { color: var(--vhp-muted); font-size: 18px; padding-left: 8px; }
.vhp-domain__row .form-control { background: transparent; border: 0; box-shadow: none; color: var(--vhp-text); font-size: 16px; }
.vhp-domain__row .form-control:focus { outline: none; }

.vhp-tld-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.vhp-tld-card { align-items: center; display: flex; flex-direction: column; gap: 8px; padding: 22px 16px; position: relative; text-align: center; text-decoration: none; }
.vhp-tld-card__badge { background: #ef4444; border-radius: 999px; color: #fff; font-size: 11px; font-weight: 800; padding: 4px 8px; position: absolute; right: 12px; top: 12px; }
.vhp-tld-card__ext { color: var(--vhp-text); font-size: 24px; font-weight: 800; }
.vhp-tld-card__price { color: var(--vhp-accent); font-size: 14px; font-weight: 700; }

.vhp-package-tabs__nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 24px; }
.vhp-package-tabs__tab {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: var(--vhp-text);
    cursor: pointer;
    display: inline-flex;
    gap: 10px;
    padding: 12px 18px;
}

.vhp-package-tabs__tab.is-active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.3));
    border-color: rgba(167, 139, 250, 0.5);
}

.vhp-package-tabs__tab em { background: rgba(255, 255, 255, 0.08); border-radius: 999px; color: var(--vhp-accent); font-size: 12px; font-style: normal; font-weight: 800; min-width: 26px; padding: 4px 8px; text-align: center; }
.vhp-package-tabs__tab i { color: var(--vhp-accent); font-size: 16px; }

.vhp-package-panel { display: none; }
.vhp-package-panel.is-active { display: block; }
.vhp-package-panel__desc { color: var(--vhp-muted); font-size: 15px; margin: 0 0 20px; text-align: center; }

.vhp-package-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.vhp-package-card { display: flex; flex-direction: column; gap: 12px; padding: 28px; }
.vhp-package-card__group { color: var(--vhp-accent); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; margin: 0; text-transform: uppercase; }
.vhp-package-card h3 { color: var(--vhp-text); font-size: 22px; margin: 0; }
.vhp-package-card__price strong { color: var(--vhp-text); font-size: 30px; }
.vhp-package-card__price span { color: var(--vhp-muted); font-size: 14px; }
.vhp-package-card__features { flex: 1; list-style: none; margin: 0; padding: 0; }
.vhp-package-card__features li { font-size: 14px; margin-bottom: 8px; }
.vhp-package-card__features i { color: var(--vhp-accent); margin-right: 6px; }

.vhp-product-section { margin-top: 36px; }

.vhp-feature-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.vhp-feature-card { padding: 26px; }
.vhp-feature-card__icon { align-items: center; background: rgba(99, 102, 241, 0.15); border-radius: 14px; color: var(--vhp-accent); display: inline-flex; font-size: 22px; height: 52px; justify-content: center; margin-bottom: 14px; width: 52px; }
.vhp-feature-card h3 { font-size: 18px; margin: 0 0 8px; }
.vhp-feature-card p { color: var(--vhp-muted); font-size: 14px; margin: 0; }

.vhp-counters__grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.vhp-counter-card { padding: 28px; text-align: center; }
.vhp-counter-card strong { color: var(--vhp-text); display: block; font-size: 36px; font-weight: 800; }
.vhp-counter-card span { color: var(--vhp-muted); font-size: 13px; }

.vhp-accordion { display: grid; gap: 12px; }
.vhp-accordion__trigger { align-items: center; background: transparent; border: 0; color: var(--vhp-text); cursor: pointer; display: flex; font-size: 16px; font-weight: 700; justify-content: space-between; padding: 20px 22px; text-align: left; width: 100%; }
.vhp-accordion__panel { display: none; padding: 0 22px 20px; }
.vhp-accordion__panel p { color: var(--vhp-muted); margin: 0; }
.vhp-accordion__item.is-open .vhp-accordion__panel { display: block; }
.vhp-accordion__item.is-open .vhp-accordion__trigger i { transform: rotate(180deg); }

.vhp-testimonials__swiper { padding-bottom: 12px; position: relative; }
.vhp-review-card { min-height: 260px; padding: 28px; }
.vhp-review-card__comment { color: var(--vhp-text); font-size: 16px; line-height: 1.7; margin: 16px 0 20px; }
.vhp-review-card__author { align-items: center; display: flex; gap: 12px; }
.vhp-review-card__author img { border-radius: 50%; object-fit: cover; }
.vhp-review-card__author strong { display: block; }
.vhp-review-card__author span { color: var(--vhp-muted); font-size: 13px; }
.vhp-testimonials__nav { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.vhp-swiper-btn { align-items: center; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 50%; color: var(--vhp-text); cursor: pointer; display: inline-flex; height: 42px; justify-content: center; width: 42px; }

.vhp-blog-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.vhp-blog-card { overflow: hidden; padding: 0; }
.vhp-blog-card__image img { display: block; height: 180px; object-fit: cover; width: 100%; }
.vhp-blog-card__body { padding: 22px; }
.vhp-blog-card h3 { font-size: 18px; margin: 10px 0; }
.vhp-blog-card h3 a { color: var(--vhp-text); text-decoration: none; }
.vhp-blog-card p { color: var(--vhp-muted); font-size: 14px; }
.vhp-blog-card time { color: var(--vhp-muted); font-size: 12px; }

.vhp-faq__search { align-items: center; display: grid; gap: 10px; grid-template-columns: auto 1fr; margin-bottom: 18px; padding: 12px 16px; }
.vhp-faq__search i { color: var(--vhp-muted); }
.vhp-faq__search .form-control { background: transparent; border: 0; box-shadow: none; color: var(--vhp-text); }
.vhp-faq__list { display: grid; gap: 12px; }
.vhp-faq__trigger { align-items: center; background: transparent; border: 0; color: var(--vhp-text); cursor: pointer; display: flex; font-weight: 700; justify-content: space-between; padding: 18px 20px; text-align: left; width: 100%; }
.vhp-faq__answer { display: none; padding: 0 20px 18px; }
.vhp-faq__answer p { color: var(--vhp-muted); margin: 0; }
.vhp-faq__item.is-open .vhp-faq__answer { display: block; }

.vhp-cta__box { align-items: center; display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; padding: 34px 38px; }
.vhp-cta__content h2 { font-size: 28px; margin: 0 0 8px; }
.vhp-cta__content p { color: var(--vhp-muted); margin: 0; }
.vhp-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 767px) {
    .vhp { padding: 0 14px; }
    .vhp-hero__slide { min-height: auto; padding: 32px 22px 96px; }
    .vhp-hero__grid { grid-template-columns: 1fr; min-height: auto; }
    .vhp-hero__visual { display: none; }
    .vhp-hero__controls { flex-wrap: wrap; left: 22px; right: 22px; }
    .vhp-hero__title { font-size: 28px; }
    .vhp-domain__row { grid-template-columns: 1fr; }
    .vhp-domain__row i { display: none; }
    .vhp-section__head--left { flex-direction: column; text-align: center; }
    .vhp-cta__box { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    .vhp-hover-card, .vhp-btn { transition: none !important; }
}
