.vg-by-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(48px, 7vw, 92px);
    background:
        radial-gradient(700px 340px at 95% 0%, color-mix(in srgb, var(--vg-primary) 45%, transparent), transparent 70%),
        linear-gradient(120deg, var(--vg-secondary) 0%, color-mix(in srgb, var(--vg-secondary) 78%, #1d3a6e) 100%);
    color: rgba(255, 255, 255, .82);
}

.vg-by-hero::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -140px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 52px solid rgba(255, 255, 255, .04);
    pointer-events: none;
}

.vg-by-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .vg-by-hero__inner.has-media {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    }
}

.vg-by-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
    max-width: 760px;
}

.vg-by-hero .vg-crumbs {
    color: rgba(255, 255, 255, .7);
}

.vg-by-hero .vg-crumbs a:hover {
    color: #fff;
}

.vg-by-hero .vg-crumbs [aria-current] {
    color: var(--vg-accent);
    font-weight: 600;
}

.vg-by-hero__eyebrow {
    color: var(--vg-accent);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.vg-by-hero__title {
    color: #fff;
    font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.2rem);
    line-height: 1.15;
}

.vg-by-hero__lead {
    font-size: 1.08rem;
    max-width: 60ch;
}

.vg-by-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.vg-by-hero__media {
    position: relative;
    padding-bottom: 24px;
}

.vg-by-hero__figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: var(--vg-radius-lg);
    border: 4px solid rgba(255, 255, 255, .1);
    box-shadow: var(--vg-shadow-lg);
}

.vg-by-hero__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vg-by-stat {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px 12px 12px;
    border-radius: var(--vg-radius-lg);
    background: var(--vg-surface);
    color: var(--vg-text);
    box-shadow: var(--vg-shadow);
}

.vg-by-stat--float {
    position: absolute;
    left: 20px;
    bottom: 0;
}

.vg-by-stat__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--vg-ok-soft);
    color: var(--vg-ok);
}

.vg-by-stat__icon .vg-ico {
    width: 24px;
    height: 24px;
}

.vg-by-stat__text {
    display: flex;
    flex-direction: column;
}

.vg-by-stat__label {
    color: var(--vg-muted);
    font-size: .8rem;
}

.vg-by-stat__value {
    color: var(--vg-heading);
    font-family: var(--vg-font-head);
    font-size: 1.4rem;
    font-weight: 800;
}

.vg-by-plan__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vg-by-plan__head:empty {
    display: none;
}

.vg-by-plan__emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--vg-secondary-soft);
    font-size: 1.5rem;
}

.vg-by-plan__level {
    color: var(--vg-primary);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vg-by-plan__price {
    align-items: center;
    justify-content: space-between;
}

.vg-by-plan__amount {
    font-size: 2rem;
}

.vg-by-plan--blue {
    border-top-color: var(--vg-info);
}

.vg-by-plan--purple {
    border-top-color: var(--vg-accent);
}

.vg-by-plan--dark {
    background: var(--vg-secondary);
    border-color: var(--vg-secondary);
    border-top-color: var(--vg-primary);
    color: rgba(255, 255, 255, .8);
}

.vg-by-plan--dark .vg-plan__name,
.vg-by-plan--dark .vg-plan__price {
    color: #fff;
}

.vg-by-plan--dark .vg-plan__price {
    border-color: rgba(255, 255, 255, .16);
}

.vg-by-plan--dark .vg-by-plan__emoji {
    background: rgba(255, 255, 255, .1);
}

.vg-by-plan--dark .vg-by-plan__level {
    color: var(--vg-accent);
}

.vg-by-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 20px;
}

.vg-by-benefit {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    background: var(--vg-bg);
    border: 1px solid var(--vg-border);
    border-radius: var(--vg-radius-lg);
    transition: transform .25s var(--vg-ease), box-shadow .25s var(--vg-ease);
}

.vg-by-benefit:hover {
    transform: translateY(-4px);
    box-shadow: var(--vg-shadow);
}

.vg-by-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px 16px 16px 4px;
    background: var(--vg-primary);
    color: #fff;
}

.vg-by-benefit:nth-child(3n+2) .vg-by-benefit__icon {
    background: var(--vg-secondary);
}

.vg-by-benefit:nth-child(3n) .vg-by-benefit__icon {
    background: var(--vg-accent);
    color: var(--vg-on-accent);
}

.vg-by-benefit__icon .vg-ico {
    width: 28px;
    height: 28px;
}

.vg-by-benefit__title {
    font-size: 1.1rem;
}

.vg-by-benefit__text {
    color: var(--vg-muted);
    font-size: .94rem;
}

.vg-by-terms {
    padding: clamp(18px, 3vw, 32px);
}

.vg-by-terms__list {
    display: flex;
    flex-direction: column;
    counter-reset: vg-kosul;
}

.vg-by-terms__item {
    position: relative;
    padding: 14px 0 14px 48px;
    border-bottom: 1px dashed var(--vg-border);
    counter-increment: vg-kosul;
    line-height: 1.6;
}

.vg-by-terms__item:last-child {
    border-bottom: 0;
}

.vg-by-terms__item::before {
    content: counter(vg-kosul);
    position: absolute;
    left: 0;
    top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--vg-primary-soft);
    color: var(--vg-primary);
    font-weight: 800;
    font-size: .88rem;
}

@media (max-width: 480px) {
    .vg-by-stat--float {
        left: 10px;
        right: 10px;
    }
}
