
/* ============================================================
   GLOBAL TYPOGRAPHY MAPPING
   ============================================================ */
.zv-pricing-box__plan,
.zv-pricing-box__currency,
.zv-pricing-box__amount,
.zv-pricing-box__btn,
.zv-icon-box__title,
.zv-feature-tabs__heading,
.zv-feature-tabs__item-title,
.zv-feature-tabs__badge,
.zv-fb__col-title,
.zv-team-card__name,
.zv-portfolio-card__title,
.zv-portfolio-card__cat,
.zv-stat__number,
.zv-service-card h3,
.zv-service-card .zv-service-icon,
.zv-hero__title {
    font-family: var(--zv-font-heading, sans-serif);
}

.zv-icon-box__desc,
.zv-icon-box__link,
.zv-feature-tabs__subheading,
.zv-feature-tabs__item-desc,
.zv-pricing-box__period,
.zv-pricing-box__trial,
.zv-pricing-box__features,
.zv-fb__brand-desc,
.zv-fb__col ul li a,
.zv-fb__copy,
.zv-fb__bottom-links a,
.zv-team-card__role,
.zv-stat__label,
.zv-portfolio-card__overlay,
.zv-service-card p,
.zv-service-card div,
.zv-hero__subtitle,
.zv-adv-btn,
.zv-pricing-box__btn {
    font-family: var(--zv-font-body, sans-serif);
}

.zv-device-browser__url,
.zv-fb__bottom-links,
.zv-fb__col ul li a,
.zv-feature-tabs__item,
.zv-adv-btn {
    font-family: var(--zv-font-body, sans-serif);
    font-family: var(--zv-font-body, sans-serif);
}

/* ============================================================
   ZEROVA CORE – Widget Styles
   Pricing Box · Icon Box · Button · Feature Tabs
   Header Builder · Footer Builder
   ============================================================ */

/* ── Animation keyframes ── */
@keyframes zvFadeUp   { from { opacity:0; transform:translateY(28px) } to { opacity:1; transform:none } }
@keyframes zvFadeIn   { from { opacity:0 }                             to { opacity:1 } }
@keyframes zvFadeLeft { from { opacity:0; transform:translateX(-24px)} to { opacity:1; transform:none } }
@keyframes zvZoomIn   { from { opacity:0; transform:scale(.92) }       to { opacity:1; transform:none } }
@keyframes zvProgressBar { from { width:0 } to { width:100% } }
@keyframes zvSlideDown{ from { opacity:0; transform:translateY(-8px) } to { opacity:1; transform:none } }
@keyframes zvPulseGlow{ 0%,100%{ box-shadow:0 0 0 0 rgba(108,99,255,.4) } 50%{ box-shadow:0 0 0 10px rgba(108,99,255,0) } }
@keyframes zvTabFadeIn{ from { opacity:0; transform:translateY(12px) scale(.98) } to { opacity:1; transform:none } }

[data-zv-animate] { opacity:0 }
[data-zv-animate].zv-in { animation-duration:.65s; animation-fill-mode:both; animation-timing-function:cubic-bezier(.16,1,.3,1) }
[data-zv-animate="fadeUp"].zv-in   { animation-name:zvFadeUp }
[data-zv-animate="fadeIn"].zv-in   { animation-name:zvFadeIn }
[data-zv-animate="fadeLeft"].zv-in { animation-name:zvFadeLeft }
[data-zv-animate="zoomIn"].zv-in   { animation-name:zvZoomIn }

/* ============================================================
   1. PRICING BOX
   ============================================================ */

.zv-pricing-box {
    position: relative;
    border-radius: 20px;
    padding: 2rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}

.zv-pricing-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0,0,0,.18);
}

/* Dark variant */
.zv-pricing-box--dark {
    background: #2d2d3a;
    color: #fff;
}

/* Light variant */
.zv-pricing-box--light {
    background: #fff;
    border: 1px solid var(--zv-gray-2, #EFEFF7);
    color: var(--zv-text, #1A1A2E);
}

/* Gradient / featured variant */
.zv-pricing-box--gradient {
    background: linear-gradient(135deg, #6C63FF 0%, #A89CFF 100%);
    color: #fff;
}

.zv-pricing-box__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg,#6C63FF,#A89CFF);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: 50px;
}

.zv-pricing-box__plan {
    font-family: var(--zv-font-heading, sans-serif);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .65;
    margin-bottom: 1rem;
    background: rgba(255,255,255,.12);
    display: inline-block;
    padding: .3rem .9rem;
    border-radius: 6px;
    width: fit-content;
}

.zv-pricing-box--light .zv-pricing-box__plan {
    font-family: var(--zv-font-heading, sans-serif);
    background: rgba(108,99,255,.1);
    color: #6C63FF;
    opacity: 1;
}

.zv-pricing-box__price-row {
    display: flex;
    align-items: flex-start;
    gap: .2rem;
    margin-bottom: .35rem;
    line-height: 1;
}

.zv-pricing-box__currency {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: .6rem;
    opacity: .85;
}

.zv-pricing-box__amount {
    font-family: var(--zv-font-heading, sans-serif);
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
}

.zv-pricing-box__period {
    font-size: .9rem;
    opacity: .55;
    align-self: flex-end;
    margin-bottom: .4rem;
}

.zv-pricing-box__trial {
    font-size: .85rem;
    opacity: .5;
    margin-bottom: 1.75rem;
}

.zv-pricing-box__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.5rem;
}

.zv-pricing-box--light .zv-pricing-box__features {
    border-top-color: var(--zv-gray-2, #EFEFF7);
}

.zv-pricing-box__features li {
    display: flex;
    align-items: center;
    gap: .85rem;
    font-size: .9rem;
    opacity: .85;
}

.zv-pricing-box__icon {
    font-size: 1rem;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zv-pricing-box--light .zv-pricing-box__icon {
    background: rgba(108,99,255,.08);
}

.zv-pricing-box__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .9rem 1.5rem;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    margin-top: auto;
    border: 1px solid rgba(255,255,255,.15);
}

.zv-pricing-box--light .zv-pricing-box__btn {
    background: linear-gradient(135deg,#6C63FF,#A89CFF);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(108,99,255,.35);
}

.zv-pricing-box__btn:hover {
    background: rgba(255,255,255,.22);
    color: #fff;
    transform: translateY(-2px);
}

.zv-pricing-box--light .zv-pricing-box__btn:hover {
    background: linear-gradient(135deg,#5850e0,#9d93f5);
    box-shadow: 0 8px 32px rgba(108,99,255,.45);
    color: #fff;
}

.zv-pricing-box__btn-icon {
    font-size: 1rem;
    opacity: .7;
}

/* ============================================================
   2. ICON BOX
   ============================================================ */

.zv-icon-box {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 14px;
    transition: all .3s ease;
}

.zv-icon-box--stacked {
    flex-direction: column;
}

.zv-icon-box:hover {
    background: rgba(108,99,255,.04);
}

.zv-icon-box__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s cubic-bezier(.16,1,.3,1);
}

.zv-icon-box:hover .zv-icon-box__icon {
    transform: scale(1.12) rotate(-4deg);
}

.zv-icon-box__icon svg {
    width: 28px;
    height: 28px;
}

/* Icon styles */
.zv-icon-box__icon--circle {
    background: rgba(108,99,255,.1);
    border-radius: 50%;
}
.zv-icon-box__icon--square {
    background: rgba(108,99,255,.1);
    border-radius: 12px;
}

/* Icon colors */
.zv-icon-box__icon--primary { color: #6C63FF }
.zv-icon-box__icon--accent  { color: #00D4AA }
.zv-icon-box__icon--white   { color: #fff }
.zv-icon-box__icon--dark    { color: #1A1A2E }

.zv-icon-box__content {
    flex: 1;
    min-width: 0;
}

.zv-icon-box__title {
    font-family: var(--zv-font-heading, sans-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--zv-text, #1A1A2E);
    margin: 0 0 .4rem;
    letter-spacing: -.01em;
}

.zv-icon-box__desc {
    font-family: var(--zv-font-body, sans-serif);
    font-size: .875rem;
    color: var(--zv-text-light, #9999BB);
    line-height: 1.65;
    margin: 0 0 .75rem;
}

.zv-icon-box__link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .85rem;
    font-weight: 600;
    color: #6C63FF;
    text-decoration: none;
    transition: gap .2s ease;
}
.zv-icon-box__link:hover { gap: .6rem; color: #6C63FF }

/* ============================================================
   3. ADVANCED BUTTON
   ============================================================ */

.zv-adv-btn-wrap { display: inline-block }

.zv-adv-btn {
    font-family: var(--zv-font-body, sans-serif);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .01em;
    cursor: pointer;
    transition: all .3s cubic-bezier(.16,1,.3,1);
    white-space: nowrap;
    border: 2px solid transparent;
}

.zv-adv-btn--full { width: 100% }

/* Sizes */
.zv-adv-btn--sm { font-size: .8rem;  padding: .5rem 1.25rem }
.zv-adv-btn--md { font-size: .9rem;  padding: .75rem 1.75rem }
.zv-adv-btn--lg { font-size: 1rem;   padding: 1rem 2.25rem }
.zv-adv-btn--xl { font-size: 1.1rem; padding: 1.15rem 2.75rem }

/* Shapes */
.zv-adv-btn--pill    { border-radius: 50px }
.zv-adv-btn--rounded { border-radius: 12px }
.zv-adv-btn--square  { border-radius: 4px }

/* Styles */
.zv-adv-btn--primary {
    background: linear-gradient(135deg,#6C63FF,#A89CFF);
    color: #fff;
    box-shadow: 0 4px 20px rgba(108,99,255,.35);
}
.zv-adv-btn--primary:hover { color:#fff; box-shadow:0 8px 32px rgba(108,99,255,.5) }

.zv-adv-btn--outline {
    background: transparent;
    color: #6C63FF;
    border-color: #6C63FF;
}
.zv-adv-btn--outline:hover { background:#6C63FF; color:#fff }

.zv-adv-btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.4);
}
.zv-adv-btn--outline-white:hover { background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.8); color:#fff }

/* Soft Blue – like screenshot 3 */
.zv-adv-btn--soft-blue {
    background: rgba(59,130,246,.1);
    color: #2563EB;
    border-color: transparent;
}
.zv-adv-btn--soft-blue:hover { background:rgba(59,130,246,.18); color:#1d4ed8 }

.zv-adv-btn--soft-green {
    background: rgba(0,212,170,.1);
    color: #00a884;
    border-color: transparent;
}
.zv-adv-btn--soft-green:hover { background:rgba(0,212,170,.18); color:#00876b }

.zv-adv-btn--soft-pink {
    background: rgba(255,101,132,.1);
    color: #e83560;
    border-color: transparent;
}
.zv-adv-btn--soft-pink:hover { background:rgba(255,101,132,.18) }

.zv-adv-btn--dark {
    background: #1A1A2E;
    color: #fff;
}
.zv-adv-btn--dark:hover { background:#2D2D4E; color:#fff }

.zv-adv-btn--ghost {
    background: transparent;
    color: var(--zv-text,#1A1A2E);
    border-color: transparent;
}
.zv-adv-btn--ghost:hover { background:rgba(108,99,255,.07) }

.zv-adv-btn--glass {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
}
.zv-adv-btn--glass:hover { background:rgba(255,255,255,.18); color:#fff }

/* Hover animations */
.zv-adv-btn--hover-lift:hover        { transform:translateY(-3px) }
.zv-adv-btn--hover-glow:hover        { animation:zvPulseGlow .6s ease }
.zv-adv-btn--hover-pulse             { animation:none }
.zv-adv-btn--hover-pulse:hover       { animation:zvPulseGlow .4s ease }

/* ============================================================
   4. FEATURE TABS (Sliding Tablet)
   ============================================================ */

.zv-feature-tabs {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.zv-feature-tabs--reverse {
    direction: rtl;
}
.zv-feature-tabs--reverse > * { direction: ltr }

@media (max-width: 900px) {
    .zv-feature-tabs { grid-template-columns:1fr; direction:ltr }
    .zv-feature-tabs__visual { order:-1 }
}

/* Nav side */
.zv-feature-tabs__heading {
    font-family: var(--zv-font-heading, sans-serif);
    font-size: clamp(1.75rem,3vw,2.5rem);
    font-weight: 800;
    color: var(--zv-text,#1A1A2E);
    letter-spacing: -.03em;
    margin: .5rem 0 .75rem;
    line-height: 1.2;
}

.zv-feature-tabs__subheading {
    font-family: var(--zv-font-body, sans-serif);
    font-size: 1rem;
    color: var(--zv-text-light,#9999BB);
    margin: 0 0 2rem;
    line-height: 1.7;
}

.zv-feature-tabs__items {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.zv-feature-tabs__item {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border-radius: 14px;
    border: 1.5px solid transparent;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.zv-feature-tabs__item:hover {
    background: rgba(108,99,255,.04);
    border-color: rgba(108,99,255,.1);
}

.zv-feature-tabs__item.active {
    background: rgba(108,99,255,.07);
    border-color: rgba(108,99,255,.2);
}

.zv-feature-tabs__item-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform .3s cubic-bezier(.16,1,.3,1);
}

.zv-feature-tabs__item.active .zv-feature-tabs__item-icon {
    transform: scale(1.15);
}

.zv-feature-tabs__item-title {
    font-family: var(--zv-font-heading, sans-serif);
    font-size: .95rem;
    font-weight: 700;
    color: var(--zv-text,#1A1A2E);
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .25rem;
}

.zv-feature-tabs__item-desc {
    font-family: var(--zv-font-body, sans-serif);
    font-size: .85rem;
    color: var(--zv-text-light,#9999BB);
    line-height: 1.55;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, opacity .3s ease;
    opacity: 0;
}

.zv-feature-tabs__item.active .zv-feature-tabs__item-desc {
    font-family: var(--zv-font-body, sans-serif);
    max-height: 120px;
    opacity: 1;
}

.zv-feature-tabs__badge {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: linear-gradient(135deg,#6C63FF,#A89CFF);
    color: #fff;
    padding: .15rem .55rem;
    border-radius: 50px;
}

.zv-feature-tabs__progress {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(108,99,255,.1);
    opacity: 0;
    transition: opacity .2s;
}

.zv-feature-tabs__item.active .zv-feature-tabs__progress {
    opacity: 1;
}

.zv-feature-tabs__progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,#6C63FF,#A89CFF);
    border-radius: 2px;
}

.zv-feature-tabs__item.active .zv-feature-tabs__progress-bar {
    animation: zvProgressBar var(--tab-speed, 4s) linear forwards;
}

/* Visual side */
.zv-feature-tabs__visual {
    position: relative;
}

.zv-feature-tabs__device {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.06);
    position: relative;
    background: #1A1A2E;
}

/* Browser frame */
.zv-feature-tabs__device--browser .zv-device-browser__bar {
    background: #2D2D4E;
    padding: .65rem 1rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.zv-device-browser__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
}
.zv-device-browser__dot:nth-child(1) { background:#FF5F57 }
.zv-device-browser__dot:nth-child(2) { background:#FFBD2E }
.zv-device-browser__dot:nth-child(3) { background:#28CA41 }

.zv-device-browser__url {
    flex: 1;
    background: rgba(255,255,255,.06);
    border-radius: 6px;
    padding: .2rem .75rem;
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    margin-left: .5rem;
    font-family: monospace;
}

/* Tablet frame */
.zv-feature-tabs__device--tablet {
    border: 8px solid #1A1A2E;
    border-radius: 24px;
}
.zv-device-tablet__home {
    background: #1A1A2E;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zv-device-tablet__home::after {
    content: '';
    width: 30px; height: 4px;
    background: rgba(255,255,255,.15);
    border-radius: 2px;
}

/* Screens */
.zv-feature-tabs__screens {
    position: relative;
    min-height: 320px;
}

.zv-feature-tabs__screen {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .4s ease, transform .4s cubic-bezier(.16,1,.3,1);
    transform: translateY(12px) scale(.98);
}

.zv-feature-tabs__screen.active {
    opacity: 1;
    transform: none;
    position: relative;
    animation: zvTabFadeIn .5s cubic-bezier(.16,1,.3,1) both;
}

.zv-feature-tabs__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zv-feature-tabs__placeholder {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg,#1C1C2E,#2D1B69);
}
.zv-feature-tabs__placeholder span { font-size: 3rem }
.zv-feature-tabs__placeholder p {
    font-size: .9rem;
    color: rgba(255,255,255,.5);
    margin: 0;
}

/* ============================================================
   5. HEADER BUILDER
   ============================================================ */

.zv-header-builder {
    font-family: var(--zv-font-body, sans-serif);
    position: relative;
    z-index: 1000;
}

.zv-hb--sticky { position: sticky; top: 0 }

/* BG variants */
.zv-hb--bg-white       { background: #fff; border-bottom: 1px solid #EFEFF7 }
.zv-hb--bg-dark        { background: #0A0A14 }
.zv-hb--bg-transparent { background: transparent }
.zv-hb--bg-blur {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.3);
}

/* Top bar */
.zv-hb__topbar {
    background: #F8F8FC;
    border-bottom: 1px solid #EFEFF7;
    font-size: .78rem;
    padding: .45rem 0;
}
.zv-hb--bg-dark .zv-hb__topbar { background:rgba(255,255,255,.04); border-bottom-color:rgba(255,255,255,.08) }

.zv-hb__topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.zv-hb__topbar-left  { color: #6C63FF; font-weight: 600 }
.zv-hb__topbar-right { color: var(--zv-text-light,#9999BB) }

/* Main bar */
.zv-hb__main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.zv-hb__logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    flex-shrink: 0;
}
.zv-hb__logo img { height: 36px; width: auto }
.zv-hb__logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--zv-text,#1A1A2E);
    letter-spacing: -.04em;
}
.zv-hb--bg-dark .zv-hb__logo-text { color:#fff }

/* Nav */
.zv-hb__nav { flex: 1 }
.zv-hb__menu {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.zv-hb__menu-item { position: relative }

.zv-hb__menu-link {
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .5rem .9rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--zv-text,#1A1A2E);
    text-decoration: none;
    border-radius: 8px;
    transition: all .2s ease;
    cursor: pointer;
}
.zv-hb--bg-dark .zv-hb__menu-link { color:rgba(255,255,255,.75) }

.zv-hb__menu-link:hover { color:#6C63FF; background:rgba(108,99,255,.07) }
.zv-hb--bg-dark .zv-hb__menu-link:hover { color:#fff; background:rgba(255,255,255,.08) }

.zv-hb__caret { transition: transform .2s ease }
.zv-hb__menu-item:hover .zv-hb__caret { transform:rotate(180deg) }

.zv-hb__badge {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: rgba(108,99,255,.12);
    color: #6C63FF;
    padding: .15rem .5rem;
    border-radius: 4px;
}

/* Dropdown */
.zv-hb__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,.14), 0 0 0 1px rgba(0,0,0,.06);
    min-width: 220px;
    padding: .75rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s cubic-bezier(.16,1,.3,1);
    z-index: 200;
}

.zv-hb__menu-item:hover .zv-hb__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.zv-hb__dropdown-list {
    list-style: none;
    padding: 0; margin: 0;
    columns: 1;
}

.zv-hb__dropdown-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .55rem .9rem;
    font-size: .875rem;
    color: var(--zv-text,#1A1A2E);
    border-radius: 8px;
    transition: all .15s ease;
    text-decoration: none;
}
.zv-hb__dropdown-list li a:hover { background:#F8F8FC; color:#6C63FF }

.zv-hb__dropdown-sep {
    height: 1px;
    background: #EFEFF7;
    margin: .4rem 0;
}

.zv-hb__dropdown-badge {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: rgba(108,99,255,.1);
    color: #6C63FF;
    padding: .15rem .5rem;
    border-radius: 4px;
}

/* CTA */
.zv-hb__right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.zv-hb__social { display:flex; gap:.5rem }
.zv-hb__social-link {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--zv-text-light,#9999BB);
    transition: all .2s ease;
}
.zv-hb__social-link:hover { color:#6C63FF; background:rgba(108,99,255,.08) }

.zv-hb__cta {
    display: inline-flex;
    align-items: center;
    padding: .55rem 1.4rem;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}
.zv-hb__cta--solid    { background:#1A1A2E; color:#fff }
.zv-hb__cta--solid:hover { background:#2D2D4E; color:#fff }
.zv-hb__cta--outline  { border: 1.5px solid #1A1A2E; color:#1A1A2E }
.zv-hb__cta--outline:hover { background:#1A1A2E; color:#fff }
.zv-hb__cta--gradient { background:linear-gradient(135deg,#6C63FF,#A89CFF); color:#fff; box-shadow:0 4px 20px rgba(108,99,255,.3) }
.zv-hb__cta--gradient:hover { box-shadow:0 8px 32px rgba(108,99,255,.45); color:#fff; transform:translateY(-2px) }
.zv-hb--bg-dark .zv-hb__cta--solid { background:#fff; color:#1A1A2E }

.zv-hb__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
}
.zv-hb__mobile-toggle span { display:block; width:22px; height:2px; background:currentColor; border-radius:2px }

@media (max-width: 960px) {
    .zv-hb__nav, .zv-hb__social { display: none }
    .zv-hb__mobile-toggle { display: flex }
}

/* ============================================================
   6. FOOTER BUILDER
   ============================================================ */

.zv-footer-builder { font-family: var(--zv-font-body, sans-serif) }
.zv-footer-builder--dark     { background:#0A0A14; color:rgba(255,255,255,.6) }
.zv-footer-builder--light    { background:#F8F8FC; color:var(--zv-text-light,#5A5A7A) }
.zv-footer-builder--gradient { background:linear-gradient(135deg,#0A0A14,#1C1C2E,#2D1B69); color:rgba(255,255,255,.6) }

.zv-fb__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 5rem 2rem 4rem;
    max-width: 1280px;
    margin: 0 auto;
}
@media (max-width: 900px) { .zv-fb__top { grid-template-columns:1fr 1fr } }
@media (max-width: 540px) { .zv-fb__top { grid-template-columns:1fr } }

.zv-fb__brand .zv-logo { color:#fff; margin-bottom:1.25rem }
.zv-footer-builder--light .zv-fb__brand .zv-logo { color:var(--zv-text,#1A1A2E) }

.zv-fb__brand-desc { font-size:.9rem; line-height:1.7; margin:.5rem 0 1.5rem; opacity:.65 }

.zv-fb__col-title {
    font-family: var(--zv-font-heading, sans-serif);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.25rem;
    opacity: .5;
}
.zv-footer-builder--light .zv-fb__col-title {
    font-family: var(--zv-font-heading, sans-serif); color:var(--zv-text,#1A1A2E) }

.zv-fb__col ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.6rem }
.zv-fb__col ul li a {
    font-family: var(--zv-font-body, sans-serif);
    font-size: .875rem;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: all .2s ease;
}
.zv-fb__col ul li a:hover { color:#fff; padding-left:4px }
.zv-footer-builder--light .zv-fb__col ul li a {
    font-family: var(--zv-font-body, sans-serif); color:var(--zv-text-light,#5A5A7A) }
.zv-footer-builder--light .zv-fb__col ul li a:hover { color:var(--zv-primary,#6C63FF) }

.zv-fb__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.zv-footer-builder--light .zv-fb__bottom { border-top-color: var(--zv-gray-2,#EFEFF7) }

.zv-fb__copy { font-size:.8rem; opacity:.35 }

.zv-fb__bottom-links { display:flex; align-items:center; gap:1.5rem }
.zv-fb__bottom-links a { font-size:.8rem; color:rgba(255,255,255,.35); text-decoration:none; transition:.2s }
.zv-fb__bottom-links a:hover { color:#fff }
.zv-footer-builder--light .zv-fb__bottom-links a { color:var(--zv-text-light,#9999BB) }
.zv-footer-builder--light .zv-fb__bottom-links a:hover { color:var(--zv-primary,#6C63FF) }
