/**
 * Posivex Full Redesign ? rollback: remove link from links.php
 * Brand: #d64d30 orange ? #05a980 green ? #1e2e55 navy
 */
:root {
    --pv-orange: #d64d30;
    --pv-orange-hover: #c04428;
    --pv-green: #05a980;
    --pv-teal: #41c4ba;
    --pv-navy: #1e2e55;
    --pv-dark: #0a0f1a;
    --pv-dark-2: #111827;
    --pv-surface: #f4f7fb;
    --pv-white: #ffffff;
    --pv-muted: #64748b;
    --pv-gold: #ffcb6c;
    --pv-radius: 20px;
    --pv-radius-sm: 12px;
    --pv-shadow: 0 25px 80px rgba(15, 23, 42, 0.12);
    --pv-shadow-lg: 0 40px 100px rgba(214, 77, 48, 0.15);
    --pv-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --pv-font: 'IBM Plex Sans', sans-serif;
    --pv-header-h: 88px;
    --pv-stats-overlap: 72px;
    --pv-stats-pull: 200px;
    --pv-stats-gap: 52px;
    --pv-stats-bridge: 24px;
}

html.pv-redesign {
    scroll-behavior: smooth;
}

html.pv-redesign body {
    font-family: var(--pv-font);
    color: var(--pv-navy);
    background: var(--pv-white);
    overflow-x: hidden;
}

/* --- Standard container (1320px site-wide) --- */
html.pv-redesign .container {
    width: 100%;
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

html.pv-redesign .container-fluid {
    width: 100%;
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 575px) {
    html.pv-redesign .container,
    html.pv-redesign .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* --- Typography --- */
html.pv-redesign .pv-gradient-text {
    background: linear-gradient(135deg, var(--pv-orange) 0%, var(--pv-gold) 50%, var(--pv-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html.pv-redesign .pv-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pv-orange);
    margin-bottom: 16px;
}

html.pv-redesign .pv-section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--pv-orange), var(--pv-green));
    border-radius: 2px;
}

html.pv-redesign .pv-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--pv-navy);
    margin: 0 0 20px;
}

html.pv-redesign .pv-section-title--light {
    color: var(--pv-white);
}

html.pv-redesign .pv-section-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--pv-muted);
    margin: 0;
    max-width: 600px;
}

html.pv-redesign .pv-section-head {
    margin-bottom: 56px;
}

html.pv-redesign .pv-section-head--center {
    text-align: center;
}

html.pv-redesign .pv-section-head--center .pv-section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
html.pv-redesign .pv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.35s var(--pv-ease), box-shadow 0.35s var(--pv-ease), background 0.35s;
    position: relative;
    overflow: hidden;
}

html.pv-redesign .pv-btn--primary {
    color: var(--pv-white);
    background: linear-gradient(135deg, var(--pv-orange), #e85a3c);
    box-shadow: 0 12px 40px rgba(214, 77, 48, 0.4);
}

html.pv-redesign .pv-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(214, 77, 48, 0.5);
    color: var(--pv-white);
}

html.pv-redesign .pv-btn--green {
    color: var(--pv-white);
    background: linear-gradient(135deg, var(--pv-green), var(--pv-teal));
    box-shadow: 0 12px 40px rgba(5, 169, 128, 0.35);
}

html.pv-redesign .pv-btn--green:hover {
    transform: translateY(-3px);
    color: var(--pv-white);
}

html.pv-redesign .pv-btn--ghost {
    color: var(--pv-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

html.pv-redesign .pv-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--pv-white);
    transform: translateY(-3px);
}

html.pv-redesign .pv-btn--outline {
    color: var(--pv-navy);
    background: transparent;
    border: 2px solid rgba(30, 46, 85, 0.15);
}

html.pv-redesign .pv-btn--outline:hover {
    border-color: var(--pv-orange);
    color: var(--pv-orange);
    transform: translateY(-3px);
}

html.pv-redesign .pv-btn i {
    transition: transform 0.3s var(--pv-ease);
}

html.pv-redesign .pv-btn:hover i {
    transform: translateX(5px);
}

/* --- Header --- */
html.pv-redesign header.pv-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s var(--pv-ease), box-shadow 0.4s var(--pv-ease);
}

html.pv-redesign header.pv-header .top {
    background: rgba(10, 15, 26, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 0;
    margin: 0;
}

html.pv-redesign header.pv-header .top ul {
    text-align: right;
    margin: 0;
}

html.pv-redesign header.pv-header .top ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    transition: color 0.3s;
}

html.pv-redesign header.pv-header .top ul li a i {
    margin-right: 6px;
    font-size: 12px;
}

html.pv-redesign header.pv-header .top ul li a:hover {
    color: var(--pv-gold);
}

html.pv-redesign header.pv-header .pv-header__inner {
    padding: 14px 0;
    transition: padding 0.4s var(--pv-ease);
}

html.pv-redesign header.pv-header.is-scrolled {
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

html.pv-redesign header.pv-header.is-scrolled .pv-header__inner {
    padding: 8px 0;
}

/* Header flex bar ? balanced spacing */
html.pv-redesign header.pv-header .container {
    max-width: 1320px;
}

html.pv-redesign header.pv-header .pv-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

html.pv-redesign header.pv-header .pv-header__logo {
    flex-shrink: 0;
    line-height: 0;
    margin-right: 8px;
}

html.pv-redesign header.pv-header .pv-header__logo img {
    width: 168px;
    max-width: 168px;
    height: auto;
    transition: transform 0.3s var(--pv-ease);
}

html.pv-redesign header.pv-header .pv-header__logo:hover img {
    transform: scale(1.03);
}

html.pv-redesign header.pv-header .pv-header__nav {
    flex: 1;
    min-width: 0;
    padding: 0 16px;
}

html.pv-redesign header.pv-header nav ul.menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0 28px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

html.pv-redesign header.pv-header nav ul.menu > li {
    display: block;
    margin-right: 0 !important;
    flex-shrink: 0;
    position: relative;
}

html.pv-redesign header.pv-header nav ul.menu > li > a,
html.pv-redesign header.pv-header nav ul.menu > li > .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap !important;
    border-bottom: none !important;
    padding: 6px 2px !important;
    transition: color 0.3s;
    display: inline-block;
    line-height: 1.2;
}

html.pv-redesign header.pv-header nav ul.menu > li > a:hover,
html.pv-redesign header.pv-header nav ul.menu > li > a.active,
html.pv-redesign header.pv-header nav ul.menu > li.nav-item.active > .nav-link {
    color: var(--pv-orange) !important;
}

html.pv-redesign header.pv-header .pv-header__cta {
    flex-shrink: 0;
    margin-left: 16px;
    padding: 11px 22px;
    min-width: 132px;
    font-size: 12px;
    white-space: nowrap;
    isolation: isolate;
    overflow: hidden;
    border: none;
    transform: none;
    background: linear-gradient(135deg, var(--pv-orange) 0%, var(--pv-gold) 48%, var(--pv-green) 100%);
    background-size: 220% 220%;
    background-position: 0% 50%;
    box-shadow:
        0 10px 32px rgba(214, 77, 48, 0.35),
        0 4px 18px rgba(5, 169, 128, 0.16);
    transition:
        box-shadow 0.45s var(--pv-ease),
        background-position 0.55s var(--pv-ease),
        color 0.35s ease;
}

html.pv-redesign header.pv-header .pv-header__cta i {
    position: relative;
    z-index: 2;
    transition: transform 0.45s var(--pv-ease);
}

html.pv-redesign header.pv-header .pv-header__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.45s var(--pv-ease);
    z-index: 1;
    pointer-events: none;
}

html.pv-redesign header.pv-header .pv-header__cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -110%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    z-index: 1;
    pointer-events: none;
}

html.pv-redesign header.pv-header .pv-header__cta:hover {
    transform: none;
    background-position: 100% 50%;
    color: var(--pv-white);
    box-shadow:
        0 14px 38px rgba(214, 77, 48, 0.4),
        0 6px 22px rgba(5, 169, 128, 0.22);
}

html.pv-redesign header.pv-header .pv-header__cta:hover::before {
    opacity: 1;
}

html.pv-redesign header.pv-header .pv-header__cta:hover::after {
    animation: pv-hero-btn-sweep 0.8s var(--pv-ease) forwards;
}

html.pv-redesign header.pv-header .pv-header__cta:hover i {
    transform: translate3d(2px, 0, 0);
}

html.pv-redesign header.pv-header .menu-bottom {
    display: none;
}

html.pv-redesign .pv-mobile-nav__footer,
html.pv-redesign .pv-mobile-nav__backdrop,
html.pv-redesign .pv-mobile-nav__head {
    display: none;
}

html.pv-redesign .pv-mobile-nav__body {
    display: contents;
}

/* --- Premium header mega dropdown --- */
@media (min-width: 992px) {
    html.pv-redesign header.pv-header nav .pv-nav-dropdown {
        position: relative;
        perspective: 1200px;
    }

    html.pv-redesign header.pv-header .pv-header__inner,
    html.pv-redesign header.pv-header .pv-header__nav,
    html.pv-redesign header.pv-header .pv-header__bar {
        overflow: visible;
    }

    html.pv-redesign header.pv-header nav .pv-mobile-nav__back {
        display: none !important;
    }

    html.pv-redesign header.pv-header nav .pv-nav-dropdown > .dropdown-toggle::after {
        border: none;
        width: 7px;
        height: 7px;
        margin-left: 8px;
        vertical-align: 2px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.35s var(--pv-ease), border-color 0.3s;
    }

    html.pv-redesign header.pv-header nav .pv-nav-dropdown.is-open > .dropdown-toggle::after {
        transform: rotate(-135deg);
        border-color: var(--pv-orange);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-panel {
        display: block !important;
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        float: none;
        width: 600px;
        max-width: min(600px, 94vw);
        padding: 0;
        margin: 0;
        background: transparent !important;
        border: none !important;
        border-radius: 0;
        box-shadow: none !important;
        overflow: visible;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        z-index: 1200;
    }

    html.pv-redesign header.pv-header nav .pv-nav-dropdown--services > .pv-dropdown-panel {
        width: 600px;
        max-width: min(600px, 94vw);
    }

    html.pv-redesign header.pv-header nav .pv-nav-dropdown.is-open > .pv-dropdown-panel {
        pointer-events: auto;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        background:
            linear-gradient(145deg, rgba(14, 20, 34, 0.98), rgba(10, 15, 26, 0.98));
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.55),
            0 0 0 1px rgba(5, 169, 128, 0.12),
            0 0 40px rgba(214, 77, 48, 0.08);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--pv-orange), var(--pv-gold), var(--pv-green));
        z-index: 2;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__shine {
        position: absolute;
        inset: 0;
        width: 45%;
        background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.07), transparent);
        pointer-events: none;
        z-index: 1;
        transform: translateX(-130%);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__grid {
        display: grid;
        grid-template-columns: 168px minmax(0, 1fr);
        gap: 0;
        align-items: stretch;
        position: relative;
        z-index: 2;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__featured {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        height: auto !important;
        min-height: 0;
        padding: 16px 14px !important;
        margin: 0;
        border: none !important;
        border-radius: 0 !important;
        text-decoration: none;
        background: linear-gradient(160deg, rgba(214, 77, 48, 0.22) 0%, rgba(5, 169, 128, 0.18) 100%) !important;
        color: var(--pv-white) !important;
        position: relative;
        overflow: hidden;
        transition: background 0.4s var(--pv-ease), transform 0.4s var(--pv-ease);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__featured::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 20%, rgba(255, 203, 108, 0.15), transparent 55%);
        pointer-events: none;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__featured:hover {
        background: linear-gradient(160deg, rgba(214, 77, 48, 0.32) 0%, rgba(5, 169, 128, 0.26) 100%) !important;
        transform: translateY(-2px);
        color: var(--pv-white) !important;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--pv-orange), var(--pv-green));
        box-shadow: 0 8px 24px rgba(214, 77, 48, 0.35);
        font-size: 16px;
        color: var(--pv-white);
        flex-shrink: 0;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__copy {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__copy strong {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.01em;
        line-height: 1.25;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__copy small {
        font-size: 10px;
        opacity: 0.78;
        font-weight: 500;
        line-height: 1.35;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__arrow {
        font-size: 10px;
        opacity: 0.65;
        margin-top: 6px;
        transition: transform 0.35s var(--pv-ease), opacity 0.3s;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__featured:hover .pv-dropdown-mega__arrow {
        transform: translateX(4px);
        opacity: 1;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__links {
        padding: 14px 14px 14px 12px;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        min-width: 0;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__main {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        min-width: 0;
        align-items: stretch;
    }

    /* Premium Design & Web column (gallery) — styles kept; enable via header.php if (true) + grid class --with-design */
    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design {
        display: none;
        padding: 14px 12px 12px;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        min-width: 0;
        flex-direction: column;
        gap: 8px;
        overflow: visible;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__grid--with-design .pv-dropdown-mega__design {
        display: flex;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__grid--with-design .pv-dropdown-mega__main {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 228px);
    }

    html.pv-redesign header.pv-header nav .pv-nav-dropdown--services:has(.pv-dropdown-mega__grid--with-design) > .pv-dropdown-panel {
        width: 780px;
        max-width: min(780px, 94vw);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link {
        display: flex !important;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 10px 9px !important;
        margin: 0;
        border: none !important;
        border-radius: 8px !important;
        font-size: 11px !important;
        font-weight: 600;
        line-height: 1.3 !important;
        color: rgba(255, 255, 255, 0.92) !important;
        background: rgba(255, 255, 255, 0.04) !important;
        text-decoration: none;
        white-space: normal !important;
        overflow: visible !important;
        transition: background 0.35s var(--pv-ease), transform 0.35s var(--pv-ease);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link-copy {
        display: flex;
        flex-direction: column;
        gap: 2px;
        flex: 1;
        min-width: 0;
        white-space: normal;
        overflow: visible;
        text-align: left;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link-copy strong {
        display: block;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: 0.01em;
        color: rgba(255, 255, 255, 0.98);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link-copy small {
        display: block;
        font-size: 10px;
        font-weight: 500;
        line-height: 1.35;
        letter-spacing: 0.02em;
        color: rgba(255, 255, 255, 0.62);
        text-transform: none;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link i {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 7px;
        font-size: 11px;
        background: rgba(214, 77, 48, 0.25);
        color: var(--pv-gold);
        margin-top: 1px;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link:hover {
        background: rgba(5, 169, 128, 0.18) !important;
        color: #fff !important;
        transform: translateY(-1px);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
        margin-top: 2px;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery-item {
        display: block;
        aspect-ratio: 1;
        border-radius: 6px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
        transition: transform 0.35s var(--pv-ease), border-color 0.3s ease, box-shadow 0.35s ease;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.45s var(--pv-ease);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery-item:hover {
        transform: scale(1.04);
        border-color: rgba(5, 169, 128, 0.45);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery-item:hover img {
        transform: scale(1.08);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery-all {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: auto;
        padding: 4px 6px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(255, 203, 108, 0.9);
        text-decoration: none;
        transition: color 0.3s ease, gap 0.3s ease;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery-all:hover {
        color: #fff;
        gap: 8px;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__label {
        display: block;
        margin-bottom: 8px;
        padding: 0 4px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        background: linear-gradient(90deg, var(--pv-orange), var(--pv-green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3px 6px;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list > li {
        min-width: 0;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item {
        display: flex !important;
        align-items: center;
        justify-content: flex-start !important;
        gap: 8px;
        width: 100%;
        min-width: 0;
        height: auto !important;
        min-height: 0;
        padding: 9px 8px !important;
        margin: 0;
        border: none !important;
        border-radius: 8px !important;
        font-size: 12px !important;
        font-weight: 600;
        letter-spacing: 0.01em;
        line-height: 1.25 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        background: transparent !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        text-align: left !important;
        text-decoration: none;
        position: relative;
        overflow: visible;
        transition:
            background 0.35s var(--pv-ease),
            color 0.3s ease,
            transform 0.35s var(--pv-ease),
            box-shadow 0.35s var(--pv-ease);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item i {
        position: static !important;
        right: auto !important;
        bottom: auto !important;
        float: none !important;
        margin: 0 !important;
        width: 26px;
        height: 26px;
        flex: 0 0 26px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 7px;
        font-size: 10px !important;
        color: var(--pv-gold);
        background: rgba(255, 255, 255, 0.06);
        transition: background 0.35s var(--pv-ease), color 0.3s, transform 0.35s var(--pv-ease);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item span {
        flex: 0 1 auto;
        min-width: 0;
        overflow: visible;
        text-overflow: unset;
        word-break: normal;
        text-align: left !important;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item:hover,
    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item:focus,
    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item.active {
        color: var(--pv-white) !important;
        background: linear-gradient(135deg, rgba(214, 77, 48, 0.2) 0%, rgba(5, 169, 128, 0.14) 100%) !important;
        transform: translateX(3px);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item:hover i,
    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item.active i {
        background: linear-gradient(135deg, var(--pv-orange), var(--pv-green));
        color: var(--pv-white);
        transform: scale(1.05);
    }

    /* Services mega — stack design gallery on narrower desktops */
    @media (min-width: 992px) and (max-width: 1199px) {
        html.pv-redesign header.pv-header nav .pv-nav-dropdown--services > .pv-dropdown-panel {
            width: min(680px, 94vw);
            max-width: min(680px, 94vw);
        }

        html.pv-redesign header.pv-header nav .pv-dropdown-mega__grid--services {
            grid-template-columns: 156px minmax(0, 1fr);
        }

        html.pv-redesign header.pv-header nav .pv-dropdown-mega__main {
            grid-template-columns: 1fr;
        }

        html.pv-redesign header.pv-header nav .pv-dropdown-mega__design {
            border-left: none;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 12px;
        }

        html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link {
            align-items: center;
        }

        html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery {
            grid-template-columns: repeat(6, minmax(0, 1fr));
        }
    }

    html.pv-redesign header.pv-header nav .dropdown:hover > .dropdown-menu {
        display: block !important;
    }
}

html.pv-redesign.pv-no-js header.pv-header nav .pv-nav-dropdown:hover > .pv-dropdown-panel {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Premium mobile / tablet navigation */
@media (max-width: 991px) {
    html.pv-redesign {
        --pv-header-h: 72px;
    }

    html.pv-redesign.menu-open {
        overflow: hidden;
    }

    html.pv-redesign header.pv-header .top {
        padding: 6px 0;
    }

    html.pv-redesign header.pv-header .top ul {
        justify-content: center;
    }

    html.pv-redesign header.pv-header .top ul li a {
        font-size: 12px;
    }

    html.pv-redesign header.pv-header .pv-header__inner {
        padding: 14px 0;
    }

    html.pv-redesign header.pv-header .pv-header__logo img {
        width: 132px;
    }

    html.pv-redesign header.pv-header .pv-header__cta {
        display: none;
    }

    html.pv-redesign.menu-open header.pv-header .menu-bottom {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    html.pv-redesign header.pv-header .menu-bottom {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        width: 44px;
        height: 44px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
        cursor: pointer;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 10000003;
        transition: background 0.3s ease, border-color 0.3s ease;
    }

    html.pv-redesign header.pv-header .menu-bottom:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.22);
    }

    html.pv-redesign header.pv-header .menu-bottom span {
        display: block;
        width: 100%;
        height: 2px;
        margin-bottom: 6px;
        background: #ffffff;
        border-radius: 2px;
        transition: transform 0.35s ease, width 0.35s ease, opacity 0.35s ease;
    }

    html.pv-redesign header.pv-header .menu-bottom span:last-child {
        margin-bottom: 0;
    }

    html.pv-redesign header.pv-header .menu-bottom span:nth-child(2) {
        width: 70%;
    }

    html.pv-redesign header.pv-header .menu-bottom.click span:nth-child(1) {
        width: 0;
        opacity: 0;
    }

    html.pv-redesign header.pv-header .menu-bottom.click span:nth-child(2) {
        transform: rotate(45deg);
        position: relative;
        top: 8px;
        width: 100%;
    }

    html.pv-redesign header.pv-header .menu-bottom.click span:nth-child(3) {
        transform: rotate(-45deg);
        position: relative;
        top: -8px;
    }

    html.pv-redesign header.pv-header .pv-header__bar {
        padding-right: 56px;
        position: relative;
        z-index: 10000002;
    }

    html.pv-redesign .pv-mobile-nav__backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 10000000;
        background: rgba(10, 15, 26, 0.78);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    html.pv-redesign.menu-open .pv-mobile-nav__backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    html.pv-redesign header.pv-header .pv-mobile-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: min(400px, 100%);
        height: 100dvh;
        max-height: 100vh;
        margin: 0;
        padding: 0;
        overflow: hidden;
        z-index: 10000001;
        background: linear-gradient(180deg, #0e1422 0%, #0a0f1a 100%);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: -24px 0 80px rgba(0, 0, 0, 0.5);
        transform: translate3d(105%, 0, 0);
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        visibility: visible;
        pointer-events: none;
        --pv-mobile-nav-head: 64px;
        --pv-mobile-nav-footer: 142px;
    }

    html.pv-redesign .pv-mobile-nav__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
        min-height: 64px;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(0, 0, 0, 0.28);
    }

    html.pv-redesign .pv-mobile-nav__logo {
        display: inline-flex;
        align-items: center;
        line-height: 0;
        flex: 1;
        min-width: 0;
    }

    html.pv-redesign .pv-mobile-nav__logo img {
        width: 128px;
        max-width: 100%;
        height: auto;
    }

    html.pv-redesign .pv-mobile-nav__close {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        cursor: pointer;
        transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    }

    html.pv-redesign .pv-mobile-nav__close-line {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 16px;
        height: 2px;
        margin: 0;
        background: currentColor;
        border-radius: 2px;
        pointer-events: none;
        transition: background 0.3s ease;
    }

    html.pv-redesign .pv-mobile-nav__close-line:first-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    html.pv-redesign .pv-mobile-nav__close-line:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    html.pv-redesign .pv-mobile-nav__close:hover {
        background: rgba(214, 77, 48, 0.18);
        border-color: rgba(214, 77, 48, 0.45);
        color: var(--pv-orange);
        transform: rotate(90deg);
    }

    html.pv-redesign .pv-mobile-nav__body {
        position: relative;
        flex: 1 1 auto;
        min-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    html.pv-redesign header.pv-header nav.pv-mobile-nav.is-services-open ul.menu {
        overflow: hidden;
    }

    html.pv-redesign.menu-open header.pv-header .pv-mobile-nav {
        transform: translate3d(0, 0, 0);
        pointer-events: auto;
    }

    html.pv-redesign header.pv-header nav ul.menu {
        display: flex !important;
        flex-direction: column;
        flex: 1 1 auto;
        flex-wrap: nowrap;
        gap: 0;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 1 !important;
        list-style: none;
        text-align: left;
        min-height: 0;
    }

    html.pv-redesign header.pv-header nav ul.menu > li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        position: relative;
        float: none !important;
    }

    html.pv-redesign header.pv-header nav .pv-nav-dropdown {
        position: static !important;
    }

    html.pv-redesign header.pv-header nav ul.menu > li.nav-item.dropdown {
        display: block !important;
        width: 100% !important;
    }

    html.pv-redesign header.pv-header nav ul.menu > li > a,
    html.pv-redesign header.pv-header nav ul.menu > li > .nav-link {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 4px !important;
        font-size: 15px !important;
        font-weight: 600;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.92) !important;
        white-space: normal !important;
        text-transform: uppercase;
        border: none !important;
        background: transparent !important;
        text-decoration: none !important;
        float: none !important;
        line-height: 1.3 !important;
        height: auto !important;
    }

    html.pv-redesign header.pv-header nav ul.menu > li > a:hover,
    html.pv-redesign header.pv-header nav ul.menu > li > a.active,
    html.pv-redesign header.pv-header nav ul.menu > li.nav-item.active > .nav-link,
    html.pv-redesign header.pv-header nav ul.menu > li > .nav-link:hover {
        color: var(--pv-orange) !important;
        background: transparent !important;
    }

    html.pv-redesign header.pv-header nav .pv-nav-dropdown > .dropdown-toggle::after {
        content: '';
        display: block;
        flex-shrink: 0;
        width: 8px;
        height: 8px;
        margin-left: 12px;
        border: none;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.35s ease;
        float: none !important;
    }

    html.pv-redesign header.pv-header nav .pv-nav-dropdown.is-sub-open > .dropdown-toggle::after {
        transform: rotate(-135deg);
    }

    /* Services slide-over — fixed drawer width while open AND while closing (no full-width flash) */
    html.pv-redesign.menu-open header.pv-header nav .pv-nav-dropdown > .pv-dropdown-panel,
    html.pv-redesign.menu-open header.pv-header nav .pv-nav-dropdown > .dropdown-menu {
        display: flex !important;
        flex-direction: column;
        position: fixed !important;
        inset: auto !important;
        top: var(--pv-mobile-nav-head, 64px) !important;
        right: 0 !important;
        left: auto !important;
        bottom: calc(var(--pv-mobile-nav-footer, 142px) + env(safe-area-inset-bottom, 0px)) !important;
        width: min(400px, 100vw) !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: linear-gradient(180deg, #0e1422 0%, #0a0f1a 100%) !important;
        border: none !important;
        box-shadow: none !important;
        visibility: hidden !important;
        opacity: 1 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        transform: translate3d(100%, 0, 0) !important;
        transition:
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 0.42s !important;
        pointer-events: none !important;
        z-index: 4;
    }

    html.pv-redesign.menu-open header.pv-header nav .pv-nav-dropdown.is-sub-open > .pv-dropdown-panel,
    html.pv-redesign.menu-open header.pv-header nav .pv-nav-dropdown.is-sub-open > .dropdown-menu {
        visibility: visible !important;
        transform: translate3d(0, 0, 0) !important;
        transition:
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 0s !important;
        pointer-events: auto !important;
    }

    /* Fallback when drawer open state class missing (should not animate differently) */
    html.pv-redesign header.pv-header nav .pv-nav-dropdown > .pv-dropdown-panel,
    html.pv-redesign header.pv-header nav .pv-nav-dropdown > .dropdown-menu {
        display: flex !important;
        flex-direction: column;
        position: absolute !important;
        inset: 0 !important;
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        max-height: none !important;
        height: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: linear-gradient(180deg, #0e1422 0%, #0a0f1a 100%) !important;
        border: none !important;
        box-shadow: none !important;
        visibility: hidden !important;
        opacity: 1 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        left: 0 !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        transform: translate3d(100%, 0, 0) !important;
        transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.42s ease !important;
        pointer-events: none !important;
        z-index: 6;
    }

    html.pv-redesign header.pv-header nav .pv-nav-dropdown.is-sub-open > .pv-dropdown-panel,
    html.pv-redesign header.pv-header nav .pv-nav-dropdown.is-sub-open > .dropdown-menu {
        visibility: visible !important;
        transform: translate3d(0, 0, 0) !important;
        pointer-events: auto !important;
    }

    html.pv-redesign header.pv-header nav.pv-mobile-nav.is-services-open .pv-mobile-nav__footer {
        z-index: 8;
    }

    html.pv-redesign header.pv-header nav .pv-nav-dropdown.is-sub-open > .pv-dropdown-panel .pv-mobile-nav__back {
        position: sticky;
        top: 0;
        z-index: 2;
        flex-shrink: 0;
        background: linear-gradient(180deg, #0e1422 0%, #0e1422 72%, rgba(14, 20, 34, 0.85) 100%);
    }

    html.pv-redesign header.pv-header nav .pv-mobile-nav__back {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        width: calc(100% - 40px);
        margin: 16px 20px 8px;
        padding: 12px 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        color: rgba(255, 255, 255, 0.88);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.02em;
        cursor: pointer;
        transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }

    html.pv-redesign header.pv-header nav .pv-mobile-nav__back i {
        color: var(--pv-orange);
        font-size: 13px;
    }

    html.pv-redesign header.pv-header nav .pv-mobile-nav__back:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.18);
        color: #fff;
    }

    html.pv-redesign.menu-open header.pv-header nav .pv-nav-dropdown > .pv-dropdown-panel .pv-dropdown-mega,
    html.pv-redesign.menu-open header.pv-header nav .pv-nav-dropdown > .dropdown-menu .pv-dropdown-mega,
    html.pv-redesign header.pv-header nav .pv-nav-dropdown.is-sub-open > .pv-dropdown-panel .pv-dropdown-mega,
    html.pv-redesign header.pv-header nav .pv-nav-dropdown.is-sub-open > .dropdown-menu .pv-dropdown-mega {
        margin: 0 0 24px;
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    html.pv-redesign.menu-open header.pv-header nav .pv-nav-dropdown > .pv-dropdown-panel .pv-mobile-nav__back,
    html.pv-redesign header.pv-header nav .pv-nav-dropdown.is-sub-open > .pv-dropdown-panel .pv-mobile-nav__back {
        width: calc(100% - 32px);
        margin-left: 16px;
        margin-right: 16px;
    }

    html.pv-redesign header.pv-header nav .dropdown:hover > .dropdown-menu {
        transform: translate3d(100%, 0, 0) !important;
        visibility: hidden !important;
    }

    html.pv-redesign header.pv-header nav .pv-nav-dropdown.is-sub-open:hover > .dropdown-menu,
    html.pv-redesign header.pv-header nav .pv-nav-dropdown.is-sub-open:hover > .pv-dropdown-panel {
        transform: translate3d(0, 0, 0) !important;
        visibility: visible !important;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega {
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega::before {
        content: '';
        display: block;
        height: 2px;
        background: linear-gradient(90deg, var(--pv-orange), var(--pv-gold), var(--pv-green));
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__grid {
        display: block;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__featured {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 14px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        background: rgba(255, 255, 255, 0.04) !important;
        color: rgba(255, 255, 255, 0.95) !important;
        text-transform: none !important;
        height: auto !important;
        white-space: normal !important;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__featured .pv-dropdown-mega__copy strong {
        display: block;
        font-size: 14px;
        color: #fff;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__featured .pv-dropdown-mega__copy small {
        display: block;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.55);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__links {
        padding: 8px 10px 12px;
        border-left: none;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__main {
        display: block;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design {
        display: none;
        padding: 10px 14px 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-left: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
        flex-direction: column;
        gap: 8px;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__grid--with-design .pv-dropdown-mega__design {
        display: flex;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design > .pv-dropdown-mega__label {
        padding: 0 0 2px;
        margin: 0;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link {
        display: flex !important;
        align-items: center;
        gap: 10px;
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
        padding: 10px 12px !important;
        margin: 0 !important;
        font-size: 14px !important;
        font-weight: 500;
        text-transform: none !important;
        color: rgba(255, 255, 255, 0.9) !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.07) !important;
        border-radius: 10px !important;
        white-space: normal !important;
        overflow: visible !important;
        line-height: 1.4 !important;
        height: auto !important;
        min-height: 0 !important;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link i {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        margin-top: 0;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: rgba(214, 77, 48, 0.22);
        color: var(--pv-gold);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link-copy {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 3px;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link-copy strong {
        font-size: 14px;
        line-height: 1.3;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link-copy small {
        font-size: 12px;
        line-height: 1.35;
        color: rgba(255, 255, 255, 0.55);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 4px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(0, 0, 0, 0.2);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery-item {
        display: block;
        position: relative;
        aspect-ratio: 1;
        min-width: 0;
        max-width: none;
        margin: 0;
        padding: 0;
        border-radius: 0;
        overflow: hidden;
        border: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery-item img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery-item:hover,
    html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery-item:hover img {
        transform: none;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link:hover {
        transform: none;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery-all {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        margin: 0;
        padding: 6px 2px 0;
        font-size: 12px;
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0.02em;
        color: var(--pv-gold);
        border-top: none;
        text-decoration: none;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__label {
        display: block;
        padding: 4px 8px 8px;
        font-size: 11px;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.45);
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list {
        display: block;
        grid-template-columns: none;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list > li {
        display: block;
        width: 100%;
        padding: 0;
        border: none;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item,
    html.pv-redesign header.pv-header nav .dropdown-menu .dropdown-item {
        display: flex !important;
        align-items: center;
        gap: 10px;
        width: 100% !important;
        padding: 12px 12px !important;
        font-size: 14px !important;
        font-weight: 500;
        text-transform: none !important;
        color: rgba(255, 255, 255, 0.9) !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        text-align: left !important;
        height: auto !important;
        min-height: 0 !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        float: none !important;
        border-radius: 8px;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item:last-child {
        border-bottom: none !important;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item i {
        position: static !important;
        float: none !important;
        margin: 0 !important;
        width: 28px;
        text-align: center;
        color: var(--pv-green);
        font-size: 14px;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item:hover,
    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item:focus,
    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item.active {
        color: var(--pv-orange) !important;
        background: rgba(255, 255, 255, 0.06) !important;
    }

    html.pv-redesign header.pv-header nav .pv-dropdown-mega__list .dropdown-item span {
        text-align: left !important;
        flex: 1;
    }

    html.pv-redesign .pv-mobile-nav__footer {
        flex-shrink: 0;
        margin-top: auto;
        padding: 16px 20px calc(20px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.35);
        display: grid;
        gap: 12px;
        position: relative;
        z-index: 2;
    }

    html.pv-redesign .pv-mobile-nav__cta {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    html.pv-redesign .pv-mobile-nav__contact {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.72) !important;
        text-decoration: none;
        word-break: break-all;
    }

    html.pv-redesign .pv-mobile-nav__contact i {
        color: var(--pv-green);
        flex-shrink: 0;
    }

    /* Services mega — small phones */
    @media (max-width: 575px) {
        html.pv-redesign.menu-open header.pv-header nav .pv-nav-dropdown > .pv-dropdown-panel .pv-dropdown-mega,
        html.pv-redesign header.pv-header nav .pv-nav-dropdown.is-sub-open > .pv-dropdown-panel .pv-dropdown-mega,
        html.pv-redesign header.pv-header nav .pv-nav-dropdown.is-sub-open > .dropdown-menu .pv-dropdown-mega {
            margin: 0 0 16px;
        }

        html.pv-redesign header.pv-header nav .pv-dropdown-mega__design {
            padding: 10px 12px 12px;
        }

        html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery {
            gap: 3px;
        }

        html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery-all {
            font-size: 11px;
            padding-top: 4px;
        }
    }

    /* Services mega — tablets in mobile drawer (same 3×2 grid, larger tiles) */
    @media (min-width: 576px) and (max-width: 991px) {
        html.pv-redesign header.pv-header nav .pv-dropdown-mega__design {
            padding: 12px 16px 14px;
        }

        html.pv-redesign header.pv-header nav .pv-dropdown-mega__gallery {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 5px;
        }

        html.pv-redesign header.pv-header nav .pv-dropdown-mega__design-link {
            padding: 12px 14px !important;
        }
    }
}

/* --- Hero (Premium) --- */
html.pv-redesign .pv-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 150px 0 148px;
    background: var(--pv-dark);
    overflow: hidden;
    isolation: isolate;
}

/* Prevent load jerk ? hide until assets ready */
html.pv-redesign.pv-home:not(.pv-hero-ready) .pv-hero__content > *,
html.pv-redesign.pv-home:not(.pv-hero-ready) .pv-hero__showcase {
    opacity: 0;
    visibility: hidden;
}

html.pv-redesign.pv-home.pv-hero-ready .pv-hero__content > *,
html.pv-redesign.pv-home.pv-hero-ready .pv-hero__showcase {
    visibility: visible;
}

html.pv-redesign.pv-home:not(.pv-hero-ready) .pv-hero__grid,
html.pv-redesign.pv-home:not(.pv-hero-ready) .pv-hero__orb,
html.pv-redesign.pv-home:not(.pv-hero-ready) .pv-hero__beam,
html.pv-redesign.pv-home:not(.pv-hero-ready) .pv-hero__sparkles span,
html.pv-redesign.pv-home:not(.pv-hero-ready) .pv-hero__bg-zoom {
    animation-play-state: paused;
}

/* Background photo layer */
html.pv-redesign .pv-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

html.pv-redesign .pv-hero__bg-parallax {
    position: absolute;
    inset: 0;
    will-change: transform;
}

html.pv-redesign .pv-hero__bg-zoom {
    position: absolute;
    inset: -6%;
    will-change: transform;
    animation: pv-ken-burns 28s ease-in-out infinite alternate;
}

@keyframes pv-ken-burns {
    from { transform: scale(1.04) translate3d(0, 0, 0); }
    to { transform: scale(1.1) translate3d(-1%, -1%, 0); }
}

html.pv-redesign .pv-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% 35%;
    display: block;
    filter: brightness(0.9) contrast(1.08) saturate(1.05);
}

html.pv-redesign .pv-hero__bg-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 90% at 78% 45%, transparent 0%, rgba(10, 15, 26, 0.15) 45%, rgba(10, 15, 26, 0.55) 100%),
        linear-gradient(100deg, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.82) 32%, rgba(10, 15, 26, 0.35) 52%, rgba(10, 15, 26, 0.25) 68%, rgba(10, 15, 26, 0.45) 100%);
}

html.pv-redesign .pv-hero__bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(214, 77, 48, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 80% 20%, rgba(5, 169, 128, 0.18) 0%, transparent 50%);
    mix-blend-mode: soft-light;
    opacity: 0.9;
}

html.pv-redesign .pv-hero__sparkles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

html.pv-redesign .pv-hero__sparkles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 8px rgba(5, 169, 128, 0.6);
}

html.pv-redesign .pv-hero__sparkles span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
html.pv-redesign .pv-hero__sparkles span:nth-child(2) { top: 35%; left: 78%; animation-delay: 1.2s; }
html.pv-redesign .pv-hero__sparkles span:nth-child(3) { top: 62%; left: 22%; animation-delay: 2.4s; }
html.pv-redesign .pv-hero__sparkles span:nth-child(4) { top: 72%; left: 68%; animation-delay: 0.8s; }
html.pv-redesign .pv-hero__sparkles span:nth-child(5) { top: 28%; left: 48%; animation-delay: 3s; }
html.pv-redesign .pv-hero__sparkles span:nth-child(6) { top: 82%; left: 42%; }

html.pv-redesign .pv-hero__streaks {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

html.pv-redesign .pv-hero__streaks span {
    position: absolute;
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(255, 203, 108, 0.5), transparent);
    opacity: 0;
    transform: rotate(25deg);
}

html.pv-redesign .pv-hero__streaks span:nth-child(1) { left: 22%; top: 10%; }
html.pv-redesign .pv-hero__streaks span:nth-child(2) { left: 58%; top: 5%; }
html.pv-redesign .pv-hero__streaks span:nth-child(3) { left: 82%; top: 18%; }

/* Film grain + cursor spotlight */
html.pv-redesign .pv-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    animation: pv-grain 0.5s steps(2) infinite;
}

@keyframes pv-grain {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-2%, -1%, 0); }
}

html.pv-redesign .pv-hero__spotlight {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(
        circle 320px at var(--pv-spot-x, 55%) var(--pv-spot-y, 42%),
        rgba(5, 169, 128, 0.14) 0%,
        rgba(214, 77, 48, 0.06) 35%,
        transparent 72%
    );
    transition: opacity 1.2s ease;
}

html.pv-redesign .pv-hero.is-animated .pv-hero__spotlight {
    opacity: 1;
}

html.pv-redesign .pv-hero__flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.07) 48%, rgba(5, 169, 128, 0.12) 52%, transparent 80%);
    opacity: 0;
    transform: translateX(-120%);
}

html.pv-redesign .pv-hero__title-accent {
    display: inline-block;
    transform-origin: 50% 100%;
}

html.pv-redesign .pv-hero__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(214, 77, 48, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(5, 169, 128, 0.14) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transform-origin: center center;
}

html.pv-redesign .pv-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 85% 75% at 55% 45%, black 15%, transparent 72%);
    z-index: 2;
    pointer-events: none;
}

html.pv-redesign .pv-hero__beam {
    position: absolute;
    top: -20%;
    left: 30%;
    width: 2px;
    height: 140%;
    background: linear-gradient(180deg, transparent, rgba(255, 203, 108, 0.5), transparent);
    transform: rotate(25deg);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

html.pv-redesign .pv-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 2;
}

html.pv-redesign .pv-hero__orb--1 {
    width: 420px;
    height: 420px;
    background: rgba(214, 77, 48, 0.32);
    top: 8%;
    right: 8%;
}

html.pv-redesign .pv-hero__orb--2 {
    width: 320px;
    height: 320px;
    background: rgba(5, 169, 128, 0.28);
    bottom: 18%;
    left: 4%;
}

html.pv-redesign .pv-hero__orb--3 {
    width: 200px;
    height: 200px;
    background: rgba(65, 196, 186, 0.22);
    top: 55%;
    right: 35%;
}

html.pv-redesign .pv-hero .pv-hero__container {
    position: relative;
    z-index: 5;
    max-width: 1320px;
}

html.pv-redesign .pv-hero__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 260px);
    min-height: calc(100dvh - 260px);
}

@media (min-width: 992px) {
    html.pv-redesign .pv-hero__layout {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 24px 40px;
    }
}

html.pv-redesign .pv-hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

/* Official enterprise label */
html.pv-redesign .pv-hero__label {
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 30px;
}

html.pv-redesign .pv-hero__label-bar {
    width: 3px;
    flex-shrink: 0;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--pv-orange) 0%, var(--pv-green) 100%);
    box-shadow: 0 0 20px rgba(214, 77, 48, 0.4);
    transform-origin: top center;
}

html.pv-redesign .pv-hero__label-top {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.3;
}

html.pv-redesign .pv-hero__label-sub {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.48);
}

html.pv-redesign .pv-hero__title {
    font-size: clamp(2.6rem, 5.8vw, 4.25rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--pv-white);
    margin: 0 0 24px;
    perspective: 900px;
}

html.pv-redesign .pv-hero__title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
    transform-style: preserve-3d;
}

@media (min-width: 576px) {
    html.pv-redesign .pv-hero__title-line {
        white-space: nowrap;
    }
}

html.pv-redesign .pv-hero__title-inner {
    display: inline-block;
    white-space: inherit;
}

html.pv-redesign .pv-hero__title-inner .pv-hero__word {
    display: inline-block;
    margin-right: 0.28em;
    transform-origin: 50% 100%;
    white-space: nowrap;
}

html.pv-redesign .pv-hero__title-accent {
    background-size: 200% auto;
}

html.pv-redesign .pv-hero__text {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 36px;
    max-width: 540px;
}

html.pv-redesign .pv-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

html.pv-redesign .pv-hero__btn-primary,
html.pv-redesign .pv-hero__btn-ghost {
    isolation: isolate;
    transition:
        transform 0.45s var(--pv-ease),
        box-shadow 0.45s var(--pv-ease),
        background-position 0.55s var(--pv-ease),
        border-color 0.45s var(--pv-ease),
        color 0.35s ease;
}

html.pv-redesign .pv-hero__btn-primary > span,
html.pv-redesign .pv-hero__btn-primary > i,
html.pv-redesign .pv-hero__btn-ghost > span,
html.pv-redesign .pv-hero__btn-ghost > i {
    position: relative;
    z-index: 2;
}

/* Primary ? logo gradient (orange ? gold ? green) */
html.pv-redesign .pv-hero__btn-primary {
    background: linear-gradient(135deg, var(--pv-orange) 0%, var(--pv-gold) 48%, var(--pv-green) 100%);
    background-size: 220% 220%;
    background-position: 0% 50%;
    border: none;
    box-shadow:
        0 14px 42px rgba(214, 77, 48, 0.38),
        0 6px 24px rgba(5, 169, 128, 0.18);
}

html.pv-redesign .pv-hero__btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.45s var(--pv-ease);
    z-index: 1;
    pointer-events: none;
}

html.pv-redesign .pv-hero__btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -110%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    z-index: 1;
    pointer-events: none;
}

html.pv-redesign .pv-hero__btn-primary:hover {
    transform: translate3d(0, -3px, 0);
    background-position: 100% 50%;
    color: var(--pv-white);
    box-shadow:
        0 22px 55px rgba(214, 77, 48, 0.45),
        0 12px 36px rgba(5, 169, 128, 0.28);
}

html.pv-redesign .pv-hero__btn-primary:hover::before {
    opacity: 1;
}

html.pv-redesign .pv-hero__btn-primary:hover::after {
    animation: pv-hero-btn-sweep 0.8s var(--pv-ease) forwards;
}

@keyframes pv-hero-btn-sweep {
    from { left: -110%; }
    to { left: 160%; }
}

/* Ghost ? gradient border + fill on hover */
html.pv-redesign .pv-hero__btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

html.pv-redesign .pv-hero__btn-ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--pv-orange), var(--pv-gold), var(--pv-green));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.45s var(--pv-ease);
    z-index: 0;
    pointer-events: none;
}

html.pv-redesign .pv-hero__btn-ghost::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(214, 77, 48, 0.22) 0%, rgba(255, 203, 108, 0.14) 50%, rgba(5, 169, 128, 0.22) 100%);
    opacity: 0;
    transition: opacity 0.45s var(--pv-ease);
    z-index: 0;
    pointer-events: none;
}

html.pv-redesign .pv-hero__btn-ghost:hover {
    transform: translate3d(0, -3px, 0);
    border-color: transparent;
    color: var(--pv-white);
    background: rgba(255, 255, 255, 0.07);
    box-shadow:
        0 16px 40px rgba(5, 169, 128, 0.22),
        0 8px 24px rgba(214, 77, 48, 0.16);
}

html.pv-redesign .pv-hero__btn-ghost:hover::before,
html.pv-redesign .pv-hero__btn-ghost:hover::after {
    opacity: 1;
}

html.pv-redesign .pv-hero__actions .pv-btn i {
    transition: transform 0.45s var(--pv-ease);
}

html.pv-redesign .pv-hero__actions .pv-btn:hover i {
    transform: translate3d(4px, 0, 0);
}

html.pv-redesign .pv-hero__btn-ghost i {
    font-size: 1.1em;
    opacity: 0.92;
}

html.pv-redesign .pv-hero__btn-ghost:hover i {
    transform: translate3d(0, 0, 0) scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
    html.pv-redesign .pv-hero__btn-primary:hover::after,
    html.pv-redesign header.pv-header .pv-header__cta:hover::after {
        animation: none;
    }

    html.pv-redesign .pv-hero__btn-primary,
    html.pv-redesign .pv-hero__btn-ghost,
    html.pv-redesign header.pv-header .pv-header__cta {
        transition: box-shadow 0.3s ease, background-position 0.3s ease;
    }

    html.pv-redesign .pv-hero__btn-primary:hover,
    html.pv-redesign .pv-hero__btn-ghost:hover {
        transform: none;
    }

    html.pv-redesign header.pv-header .pv-header__cta:hover {
        transform: none;
    }
}

html.pv-redesign .pv-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 40px;
    margin-bottom: 0;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Official feature chips (replaces POS card) */
html.pv-redesign .pv-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

html.pv-redesign .pv-hero__feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.72);
    transition: border-color 0.3s, background 0.3s;
}

html.pv-redesign .pv-hero__feature i {
    color: var(--pv-green);
    font-size: 13px;
}

html.pv-redesign .pv-hero__feature:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(5, 169, 128, 0.35);
}

/* Hero showcase ? premium image with right breathing room */
html.pv-redesign .pv-hero__showcase {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
    overflow: visible;
    padding: 0 24px 40px;
}

@media (min-width: 992px) {
    html.pv-redesign .pv-hero__showcase {
        min-height: 560px;
        justify-content: flex-end;
        align-items: center;
        padding: 0 clamp(48px, 6vw, 100px) 48px 0;
        margin-right: 0;
    }
}

html.pv-redesign .pv-hero__showcase-glow {
    position: absolute;
    top: 50%;
    right: clamp(48px, 8vw, 110px);
    width: min(520px, 72%);
    aspect-ratio: 1;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(5, 169, 128, 0.35) 0%, rgba(214, 77, 48, 0.12) 42%, transparent 72%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    animation: pv-aura-pulse 6s ease-in-out infinite;
}

@keyframes pv-aura-pulse {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

html.pv-redesign .pv-hero__figure-wrap {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    max-width: 520px;
    aspect-ratio: 1;
    margin-left: auto;
    margin-right: 0;
}

html.pv-redesign .pv-hero__figure-reveal {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: clip-path, transform;
}

html.pv-redesign .pv-hero__figure-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform-origin: center center;
    perspective: 1200px;
}

html.pv-redesign .pv-hero__orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 3;
}

html.pv-redesign .pv-hero__orbit-ring--1 {
    width: 100%;
    height: 100%;
    border-color: rgba(5, 169, 128, 0.35);
    border-width: 1.5px;
}

html.pv-redesign .pv-hero__orbit-ring--2 {
    width: 94%;
    height: 94%;
    border-style: dashed;
    border-color: rgba(214, 77, 48, 0.32);
    z-index: 4;
}

html.pv-redesign .pv-hero__ring-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 7px;
    height: 7px;
    margin: -3.5px 0 0 -3.5px;
    border-radius: 50%;
    background: var(--pv-green);
    box-shadow: 0 0 14px rgba(5, 169, 128, 0.9), 0 0 28px rgba(5, 169, 128, 0.4);
}

html.pv-redesign .pv-hero__orbit-ring--2 .pv-hero__ring-dot {
    background: var(--pv-orange);
    box-shadow: 0 0 14px rgba(214, 77, 48, 0.9), 0 0 28px rgba(214, 77, 48, 0.35);
}

html.pv-redesign .pv-hero__figure-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    margin: -50% 0 0 -50%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 55%, rgba(5, 169, 128, 0.32) 0%, rgba(214, 77, 48, 0.12) 45%, transparent 72%);
    filter: blur(28px);
    z-index: 0;
    pointer-events: none;
    animation: pv-aura-pulse 5s ease-in-out infinite 1s;
}

html.pv-redesign .pv-hero__figure-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.1),
        0 0 0 6px rgba(5, 169, 128, 0.15),
        inset 0 0 40px rgba(0, 0, 0, 0.15);
    transform-origin: center center;
    transform-style: preserve-3d;
}

html.pv-redesign .pv-hero__figure {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 50%;
    transform-origin: center center;
}

html.pv-redesign .pv-hero__figure-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
    z-index: 4;
    transform: translateX(-130%);
}

html.pv-redesign .pv-hero__figure-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 35%;
    border-radius: 50%;
    background: linear-gradient(180deg, transparent, rgba(5, 169, 128, 0.15), transparent);
    pointer-events: none;
    z-index: 3;
    animation: pv-figure-scan 5s ease-in-out infinite;
}

@keyframes pv-figure-scan {
    0%, 100% { top: -35%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Metric cards ? right side of showcase only */
html.pv-redesign .pv-hero__metric {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: pv-float 5s ease-in-out infinite;
}

html.pv-redesign .pv-hero__metric--growth,
html.pv-redesign .pv-hero__metric--secure {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.6);
}

html.pv-redesign .pv-hero__metric--growth {
    top: 10%;
    right: clamp(12px, 3vw, 28px);
    left: auto;
    animation-delay: 0s;
}

html.pv-redesign .pv-hero__metric--secure {
    bottom: 34%;
    right: clamp(8px, 2.5vw, 24px);
    left: auto;
    animation-delay: 1.2s;
}

html.pv-redesign .pv-hero__metric--payment {
    bottom: 12%;
    left: 8%;
    right: auto;
    padding: 12px 18px;
    background: rgba(10, 15, 26, 0.92);
    border: 1px solid rgba(5, 169, 128, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    animation-delay: 0.6s;
}

html.pv-redesign .pv-hero__metric-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--pv-white);
    flex-shrink: 0;
}

html.pv-redesign .pv-hero__metric-icon--green {
    background: linear-gradient(135deg, var(--pv-green), var(--pv-teal));
}

html.pv-redesign .pv-hero__metric-icon--orange {
    background: linear-gradient(135deg, var(--pv-orange), #e85a3c);
}

html.pv-redesign .pv-hero__metric-icon {
    animation: pv-icon-pulse 3s ease-in-out infinite;
}

@keyframes pv-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

html.pv-redesign .pv-hero__metric-body strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--pv-navy);
    line-height: 1.2;
}

html.pv-redesign .pv-hero__metric-body span {
    display: block;
    font-size: 11px;
    color: var(--pv-muted);
    letter-spacing: 0.02em;
}

html.pv-redesign .pv-hero__metric--payment > i {
    color: var(--pv-green);
    font-size: 22px;
    flex-shrink: 0;
}

html.pv-redesign .pv-hero__metric--payment .pv-hero__metric-body span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
}

html.pv-redesign .pv-hero__metric--payment .pv-hero__metric-body strong {
    font-size: 17px;
    color: var(--pv-white);
}

html.pv-redesign .pv-hero__stat strong {
    display: block;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--pv-white);
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
    min-width: 4.5ch;
}

html.pv-redesign .pv-hero__stat span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

/* Scroll indicator */
html.pv-redesign .pv-hero__scroll {
    position: absolute;
    bottom: 96px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0;
    background: transparent;
    border: none;
    transition: color 0.3s, transform 0.35s var(--pv-ease);
    animation: pv-scroll-float 3s ease-in-out infinite;
}

html.pv-redesign .pv-hero__scroll:hover {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transform: translateX(-50%) translateY(-2px);
}

html.pv-redesign .pv-hero__scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

html.pv-redesign .pv-hero__scroll:hover .pv-hero__scroll-mouse {
    border-color: rgba(255, 203, 108, 0.65);
    box-shadow:
        0 10px 28px rgba(214, 77, 48, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

html.pv-redesign .pv-hero__scroll-wheel {
    width: 4px;
    height: 9px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--pv-orange), var(--pv-gold));
    animation: pv-mouse-wheel 2s ease-in-out infinite;
}

html.pv-redesign .pv-hero__scroll-label {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

@keyframes pv-mouse-wheel {
    0% { opacity: 1; transform: translateY(0); }
    70% { opacity: 0.15; transform: translateY(10px); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes pv-scroll-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

html.pv-redesign .pv-hero__scroll:hover {
    animation: none;
}

@media (min-width: 1200px) {
    html.pv-redesign header.pv-header nav ul.menu {
        gap: 0 32px;
    }

    html.pv-redesign header.pv-header .pv-header__bar {
        gap: 40px;
    }

    html.pv-redesign .pv-hero__figure-wrap {
        max-width: 420px;
        margin: 0 auto;
    }

    html.pv-redesign .pv-hero__showcase {
        min-height: 500px;
        padding-right: clamp(56px, 7vw, 110px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html.pv-redesign .pv-hero__bg-zoom,
    html.pv-redesign .pv-hero__orb,
    html.pv-redesign .pv-hero__beam,
    html.pv-redesign .pv-hero__sparkles span,
    html.pv-redesign .pv-hero__grain,
    html.pv-redesign .pv-hero__spotlight,
    html.pv-redesign .pv-hero__flash,
    html.pv-redesign .pv-hero__metric-icon,
    html.pv-redesign .pv-hero__streaks span,
    html.pv-redesign .pv-hero__orbit-ring,
    html.pv-redesign .pv-hero__figure-scan,
    html.pv-redesign .pv-hero__showcase-glow,
    html.pv-redesign .pv-hero__scroll,
    html.pv-redesign .pv-hero__scroll-wheel,
    html.pv-redesign .pv-features::after,
    html.pv-redesign .pv-features__showcase-glow,
    html.pv-redesign .pv-features__showcase-ring,
    html.pv-redesign .pv-features__float,
    html.pv-redesign .pv-cta-band::after,
    html.pv-redesign .pv-cta-band__orb,
    html.pv-redesign .pv-benefits::before,
    html.pv-redesign .pv-benefits__bg-orb,
    html.pv-redesign .pv-benefits__showcase-glow,
    html.pv-redesign .pv-benefits__accent,
    html.pv-redesign .pv-testimonials-section__bg-orb,
    html.pv-redesign .pv-demo-cta__bg-gradient,
    html.pv-redesign .pv-demo-cta__bg-shine,
    html.pv-redesign .pv-demo-cta__visual-glow,
    html.pv-redesign .pv-footer__bg-orb,
    html.pv-redesign .pv-page-hero__bg-orb,
    html.pv-redesign .pv-page-hero__bg-shine,
    html.pv-redesign .pv-about-intro__visual-glow,
    html.pv-redesign .pv-about-intro__visual-ring,
    html.pv-redesign .pv-about-cities__visual-glow,
    html.pv-redesign .pv-about-cities__visual-ring,
    html.pv-redesign .pv-about-cities__atm-label,
    html.pv-redesign .pv-about-cities__badge,
    html.pv-redesign .pv-about-cta__phone-icon,
    html.pv-redesign .pv-about-cta__bg-shine,
    html.pv-redesign .pv-about-world__bg-circles,
    html.pv-redesign .pv-about-world__visual-glow,
    html.pv-redesign .pv-about-world__visual-ring {
        animation: none !important;
    }

    html.pv-redesign .pv-key-features__bg-orb,
    html.pv-redesign .pv-key-features__bg-grid,
    html.pv-redesign .pv-key-features__bg-beam,
    html.pv-redesign .pv-key-features__bg-shine,
    html.pv-redesign .pv-key-features__bg-ambient,
    html.pv-redesign .pv-key-features__bg-particles span {
        animation: none !important;
    }

    html.pv-redesign .pv-zigzag__bg-orb,
    html.pv-redesign .pv-zigzag__bg-shine,
    html.pv-redesign .pv-zigzag__visual-glow,
    html.pv-redesign .pv-zigzag__visual-ring {
        animation: none !important;
    }

    html.pv-redesign .pv-referral-partnership__bg-circles,
    html.pv-redesign .pv-referral-partnership__bg-orb,
    html.pv-redesign .pv-referral-partnership__bg-shine,
    html.pv-redesign .pv-partner-card__glow {
        animation: none !important;
    }

    html.pv-redesign .pv-bonus-program__bg-photo,
    html.pv-redesign .pv-bonus-program__coins span,
    html.pv-redesign .pv-bonus-program__bg-orb,
    html.pv-redesign .pv-bonus-program__bg-shine {
        animation: none !important;
    }

    html.pv-redesign .pv-iso-program__bg-orb,
    html.pv-redesign .pv-iso-program__bg-shine {
        animation: none !important;
    }

    html.pv-redesign .pv-ref-schedule__bg-orb,
    html.pv-redesign .pv-ref-schedule__bg-shine,
    html.pv-redesign .pv-ref-schedule__visual-shine {
        animation: none !important;
    }

    html.pv-redesign .pv-contact__bg-orb,
    html.pv-redesign .pv-contact__bg-shine {
        animation: none !important;
    }

    html.pv-redesign .pv-dt__bg-orb,
    html.pv-redesign .pv-dt__bg-shine,
    html.pv-redesign .pv-dt__device-glow,
    html.pv-redesign .pv-dt__device-shine {
        animation: none !important;
    }

    html.pv-redesign .pv-eco__bg-orb,
    html.pv-redesign .pv-eco__bg-shine,
    html.pv-redesign .pv-eco__visual-glow,
    html.pv-redesign .pv-eco__visual-ring,
    html.pv-redesign .pv-eco__frame-shine,
    html.pv-redesign .pv-eco-why__bg-orb,
    html.pv-redesign .pv-eco-why__bg-shine,
    html.pv-redesign .pv-eco-why__visual-glow,
    html.pv-redesign .pv-eco-why__frame-shine {
        animation: none !important;
    }

    html.pv-redesign .pv-pat__bg-orb,
    html.pv-redesign .pv-pat__bg-shine,
    html.pv-redesign .pv-pat-showcase__bg-orb,
    html.pv-redesign .pv-pat-showcase__bg-shine,
    html.pv-redesign .pv-pat-showcase__visual-glow,
    html.pv-redesign .pv-pat-showcase__visual-ring,
    html.pv-redesign .pv-pat-showcase__frame-shine {
        animation: none !important;
    }

    html.pv-redesign .pv-rest__bg-orb,
    html.pv-redesign .pv-rest__bg-shine,
    html.pv-redesign .pv-rest-intro__visual-glow,
    html.pv-redesign .pv-rest-intro__frame-shine,
    html.pv-redesign .pv-rest-intro__side-glow,
    html.pv-redesign .pv-rest-intro__side-shine,
    html.pv-redesign .pv-rest-features__bg-orb,
    html.pv-redesign .pv-rest-features__bg-shine,
    html.pv-redesign .pv-rest-features__visual-glow,
    html.pv-redesign .pv-rest-features__visual-ring,
    html.pv-redesign .pv-rest-features__frame-shine {
        animation: none !important;
    }

    html.pv-redesign .pv-pos__bg-orb,
    html.pv-redesign .pv-pos__bg-shine,
    html.pv-redesign .pv-pos-intro__visual-glow,
    html.pv-redesign .pv-pos-intro__frame-shine,
    html.pv-redesign .pv-pos-features__bg-orb,
    html.pv-redesign .pv-pos-features__bg-shine {
        animation: none !important;
    }
}

/* --- Stats bar --- */
html.pv-redesign .pv-stats {
    padding: 0;
    margin-top: calc(-1 * var(--pv-stats-overlap));
    margin-bottom: 0;
    position: relative;
    z-index: 12;
    pointer-events: none;
}

html.pv-redesign .pv-stats .container,
html.pv-redesign .pv-stats__card {
    pointer-events: auto;
}

html.pv-redesign .pv-stats::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    top: calc(var(--pv-stats-overlap) - 4px);
    height: calc(var(--pv-stats-pull) + var(--pv-stats-bridge));
    background: var(--pv-surface);
    z-index: -1;
}

html.pv-redesign .pv-stats__card {
    position: relative;
    border-radius: calc(var(--pv-radius) + 4px);
    padding: 1px;
    background: linear-gradient(135deg, rgba(214, 77, 48, 0.35), rgba(255, 203, 108, 0.25), rgba(5, 169, 128, 0.35));
    box-shadow:
        0 30px 90px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

html.pv-redesign .pv-stats__card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    z-index: 0;
}

html.pv-redesign .pv-stats__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 20px;
    padding: 40px 40px 36px;
    border-radius: inherit;
    overflow: hidden;
}

html.pv-redesign .pv-stats__grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pv-orange), var(--pv-gold), var(--pv-green));
    opacity: 0.9;
}

html.pv-redesign .pv-stats__grid::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

html.pv-redesign .pv-stats__item {
    text-align: center;
    padding: 14px 12px;
    position: relative;
    border-radius: 16px;
    transition: transform 0.4s var(--pv-ease), background 0.4s var(--pv-ease), box-shadow 0.4s var(--pv-ease);
}

html.pv-redesign .pv-stats__item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

html.pv-redesign .pv-stats__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 18%;
    height: 64%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(30, 46, 85, 0.12), transparent);
}

html.pv-redesign .pv-stats__icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.45s var(--pv-ease);
}

html.pv-redesign .pv-stats__icon-img {
    width: 88px;
    height: 88px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(15, 23, 42, 0.16));
    transition: transform 0.45s var(--pv-ease), filter 0.45s var(--pv-ease);
}

html.pv-redesign .pv-stats__item:hover .pv-stats__icon-img {
    transform: translateY(-4px) scale(1.05);
    filter: drop-shadow(0 16px 28px rgba(15, 23, 42, 0.2));
}

html.pv-redesign .pv-stats__item .count {
    font-size: clamp(1.75rem, 2.4vw, 2.35rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--pv-navy) 20%, var(--pv-orange) 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 6px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

html.pv-redesign .pv-stats__item span {
    display: block;
    font-size: 13px;
    color: var(--pv-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* --- Why / Bento --- */
html.pv-redesign .pv-why {
    margin-top: calc(-1 * var(--pv-stats-pull));
    padding: calc(var(--pv-stats-gap) + var(--pv-stats-pull)) 0 120px;
    background: var(--pv-surface);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

html.pv-redesign .pv-why::before {
    content: '';
    position: absolute;
    top: 8%;
    left: -8%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.07) 0%, transparent 68%);
    pointer-events: none;
}

html.pv-redesign .pv-why::after {
    content: '';
    position: absolute;
    right: -6%;
    bottom: 10%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

html.pv-redesign .pv-bento {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: auto auto;
    gap: 22px;
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-bento__panel {
    will-change: transform;
    transform-style: preserve-3d;
}

html.pv-redesign .pv-bento__main {
    grid-row: span 2;
    min-height: 500px;
}

html.pv-redesign .pv-bento__main-frame {
    height: 100%;
    padding: 1px;
    border-radius: calc(var(--pv-radius) + 2px);
    background: linear-gradient(145deg, rgba(214, 77, 48, 0.55), rgba(255, 203, 108, 0.35), rgba(5, 169, 128, 0.45));
    box-shadow:
        0 28px 70px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.45) inset;
}

html.pv-redesign .pv-bento__main-inner {
    position: relative;
    height: 100%;
    min-height: 498px;
    border-radius: var(--pv-radius);
    overflow: hidden;
    background: var(--pv-dark);
}

html.pv-redesign .pv-bento__main-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--pv-ease), filter 0.6s ease;
}

html.pv-redesign .pv-bento__main:hover .pv-bento__main-inner img {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.04);
}

html.pv-redesign .pv-bento__shine {
    position: absolute;
    inset: 0;
    width: 45%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.14), transparent);
    transform: translateX(-130%);
    pointer-events: none;
    z-index: 2;
}

html.pv-redesign .pv-bento__ribbon {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pv-white);
    background: rgba(10, 15, 26, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

html.pv-redesign .pv-bento__ribbon i {
    color: var(--pv-gold);
    font-size: 12px;
}

html.pv-redesign .pv-bento__overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 3;
    padding: 28px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 15, 26, 0.35) 24%, rgba(10, 15, 26, 0.88) 100%);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

html.pv-redesign .pv-bento__overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 26, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    mask-image: linear-gradient(180deg, transparent 0%, #000 38%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 38%);
    pointer-events: none;
}

html.pv-redesign .pv-bento__stat,
html.pv-redesign .pv-bento__overlay p,
html.pv-redesign .pv-bento__chips {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-bento__stat strong {
    display: block;
    font-size: clamp(2rem, 3.2vw, 2.65rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, var(--pv-gold) 55%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

html.pv-redesign .pv-bento__stat span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

html.pv-redesign .pv-bento__overlay p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    max-width: 92%;
}

html.pv-redesign .pv-bento__chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

html.pv-redesign .pv-bento__chips li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

html.pv-redesign .pv-bento__chips i {
    font-size: 10px;
    color: var(--pv-gold);
}

html.pv-redesign .pv-bento__card {
    position: relative;
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--pv-radius);
    padding: 28px 28px 24px;
    border: 1px solid rgba(30, 46, 85, 0.07);
    box-shadow:
        0 10px 40px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: transform 0.45s var(--pv-ease), box-shadow 0.45s var(--pv-ease), border-color 0.45s var(--pv-ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    min-height: 238px;
}

html.pv-redesign .pv-bento__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pv-orange), var(--pv-gold), var(--pv-green));
    opacity: 0.85;
}

html.pv-redesign .pv-bento__card-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.45s var(--pv-ease);
    pointer-events: none;
}

html.pv-redesign .pv-bento__card--secure .pv-bento__card-glow {
    background: radial-gradient(circle, rgba(214, 77, 48, 0.14) 0%, transparent 70%);
}

html.pv-redesign .pv-bento__card--support .pv-bento__card-glow {
    background: radial-gradient(circle, rgba(5, 169, 128, 0.16) 0%, transparent 70%);
}

html.pv-redesign .pv-bento__card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 77, 48, 0.18);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

html.pv-redesign .pv-bento__card:hover .pv-bento__card-glow {
    opacity: 1;
}

html.pv-redesign .pv-bento__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

html.pv-redesign .pv-bento__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--pv-white);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    transition: transform 0.45s var(--pv-ease);
}

html.pv-redesign .pv-bento__card--secure .pv-bento__card-icon {
    background: linear-gradient(135deg, var(--pv-orange), #e8783a);
}

html.pv-redesign .pv-bento__card--support .pv-bento__card-icon {
    background: linear-gradient(135deg, var(--pv-green), var(--pv-teal));
}

html.pv-redesign .pv-bento__card:hover .pv-bento__card-icon {
    transform: scale(1.06) rotate(-3deg);
}

html.pv-redesign .pv-bento__card-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pv-muted);
    padding: 7px 10px;
    border-radius: 100px;
    background: rgba(30, 46, 85, 0.05);
    border: 1px solid rgba(30, 46, 85, 0.06);
}

html.pv-redesign .pv-bento__card h3 {
    font-size: clamp(2.2rem, 3vw, 2.85rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--pv-navy) 10%, var(--pv-orange) 70%, var(--pv-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px;
    line-height: 1;
    letter-spacing: -0.03em;
}

html.pv-redesign .pv-bento__card p {
    color: var(--pv-muted);
    margin: 0 0 18px;
    line-height: 1.65;
    font-size: 15px;
    flex: 1;
}

html.pv-redesign .pv-bento__card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(30, 46, 85, 0.08);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pv-navy);
}

html.pv-redesign .pv-bento__card-foot i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--pv-white);
    background: linear-gradient(135deg, var(--pv-orange), var(--pv-green));
    transition: transform 0.35s var(--pv-ease);
}

html.pv-redesign .pv-bento__card:hover .pv-bento__card-foot i {
    transform: translateX(4px);
}

/* --- Features (dark + bg image) --- */
html.pv-redesign .pv-features {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: url("../images/service-bg.webp") center/cover no-repeat fixed;
    isolation: isolate;
}

html.pv-redesign .pv-features::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 15, 26, 0.94) 0%, rgba(10, 15, 26, 0.84) 42%, rgba(10, 15, 26, 0.52) 100%),
        radial-gradient(ellipse 55% 45% at 82% 58%, rgba(214, 77, 48, 0.16) 0%, transparent 68%),
        radial-gradient(ellipse 40% 35% at 18% 78%, rgba(5, 169, 128, 0.12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

html.pv-redesign .pv-features::after {
    content: '';
    position: absolute;
    left: -15%;
    right: -15%;
    bottom: -42%;
    height: 85%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    transform: perspective(900px) rotateX(72deg);
    transform-origin: center top;
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
    animation: pv-features-grid-drift 28s linear infinite;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
}

@keyframes pv-features-grid-drift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 0 56px, 56px 0; }
}

html.pv-redesign .pv-features .container {
    position: relative;
    z-index: 2;
}

html.pv-redesign .pv-feature-list {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
}

html.pv-redesign .pv-feature-list li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition:
        background 0.4s var(--pv-ease),
        transform 0.4s var(--pv-ease),
        border-color 0.4s var(--pv-ease),
        box-shadow 0.4s var(--pv-ease);
    position: relative;
    overflow: hidden;
}

html.pv-redesign .pv-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--pv-orange), var(--pv-green));
    opacity: 0;
    transition: opacity 0.4s var(--pv-ease);
}

html.pv-redesign .pv-feature-list li:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 203, 108, 0.28);
    transform: translateX(8px);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

html.pv-redesign .pv-feature-list li:hover::before {
    opacity: 1;
}

html.pv-redesign .pv-feature-list__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--pv-white);
    background: linear-gradient(135deg, rgba(214, 77, 48, 0.9), rgba(255, 203, 108, 0.75));
    box-shadow: 0 10px 24px rgba(214, 77, 48, 0.28);
    transition: transform 0.4s var(--pv-ease);
}

html.pv-redesign .pv-feature-list li:nth-child(2) .pv-feature-list__icon {
    background: linear-gradient(135deg, rgba(5, 169, 128, 0.95), rgba(65, 196, 186, 0.8));
    box-shadow: 0 10px 24px rgba(5, 169, 128, 0.25);
}

html.pv-redesign .pv-feature-list li:nth-child(3) .pv-feature-list__icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(96, 165, 250, 0.8));
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

html.pv-redesign .pv-feature-list li:nth-child(4) .pv-feature-list__icon {
    background: linear-gradient(135deg, rgba(30, 46, 85, 0.95), rgba(100, 116, 139, 0.85));
    box-shadow: 0 10px 24px rgba(30, 46, 85, 0.28);
}

html.pv-redesign .pv-feature-list li:hover .pv-feature-list__icon {
    transform: scale(1.06) rotate(-4deg);
}

html.pv-redesign .pv-feature-list__index {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.12);
    transition: color 0.4s var(--pv-ease);
}

html.pv-redesign .pv-feature-list li:hover .pv-feature-list__index {
    color: rgba(255, 203, 108, 0.35);
}

html.pv-redesign .pv-feature-list__body span {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--pv-white);
    margin-bottom: 5px;
}

html.pv-redesign .pv-feature-list__body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
}

/* Features 3D showcase */
html.pv-redesign .pv-features__showcase {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1200px;
}

html.pv-redesign .pv-features__showcase-glow {
    position: absolute;
    inset: 8% 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(214, 77, 48, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 30% 70%, rgba(5, 169, 128, 0.18) 0%, transparent 50%);
    filter: blur(24px);
    animation: pv-features-glow-pulse 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pv-features-glow-pulse {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

html.pv-redesign .pv-features__showcase-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

html.pv-redesign .pv-features__showcase-ring--1 {
    width: 92%;
    height: 92%;
    animation: pv-features-ring-spin 24s linear infinite;
}

html.pv-redesign .pv-features__showcase-ring--2 {
    width: 108%;
    height: 108%;
    border-color: rgba(5, 169, 128, 0.18);
    animation: pv-features-ring-spin 32s linear infinite reverse;
}

@keyframes pv-features-ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

html.pv-redesign .pv-features__showcase-frame {
    position: relative;
    width: min(100%, 360px);
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(145deg, rgba(214, 77, 48, 0.8), rgba(255, 203, 108, 0.55), rgba(5, 169, 128, 0.75));
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    transform-style: preserve-3d;
    overflow: hidden;
}

html.pv-redesign .pv-features__showcase-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 21px;
    display: block;
    transition: transform 0.8s var(--pv-ease), filter 0.5s ease;
}

html.pv-redesign .pv-features__showcase:hover .pv-features__showcase-frame img {
    transform: scale(1.04);
    filter: brightness(1.06) contrast(1.03);
}

html.pv-redesign .pv-features__showcase-frame::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 21px;
    pointer-events: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.14),
        inset 0 -40px 60px rgba(10, 15, 26, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 28%, transparent 100%);
}

html.pv-redesign .pv-features__showcase-shine {
    position: absolute;
    inset: 3px;
    border-radius: 21px;
    background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.22) 50%, transparent 62%);
    transform: translateX(-130%);
    pointer-events: none;
}

html.pv-redesign .pv-features__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(10, 15, 26, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    animation: pv-features-float 4s ease-in-out infinite;
}

html.pv-redesign .pv-features__float i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--pv-white);
    background: linear-gradient(135deg, var(--pv-orange), var(--pv-green));
}

html.pv-redesign .pv-features__float strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--pv-white);
    line-height: 1.2;
}

html.pv-redesign .pv-features__float span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

html.pv-redesign .pv-features__float--chart {
    top: 12%;
    left: -4%;
    animation-delay: 0s;
}

html.pv-redesign .pv-features__float--report {
    bottom: 14%;
    right: -6%;
    animation-delay: 1.2s;
}

@keyframes pv-features-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

html.pv-redesign .pv-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

html.pv-redesign .pv-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--pv-radius);
    padding: 36px;
    transition: background 0.4s, border-color 0.4s, transform 0.4s var(--pv-ease);
    position: relative;
    overflow: hidden;
}

html.pv-redesign .pv-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pv-orange), var(--pv-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--pv-ease);
}

html.pv-redesign .pv-feature-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(214, 77, 48, 0.3);
    transform: translateY(-4px);
}

html.pv-redesign .pv-feature-card:hover::before {
    transform: scaleX(1);
}

html.pv-redesign .pv-feature-card__num {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(214, 77, 48, 0.35);
    line-height: 1;
    margin-bottom: 16px;
}

html.pv-redesign .pv-feature-card h4 {
    color: var(--pv-white);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 12px;
}

html.pv-redesign .pv-feature-card p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* --- Showcase split --- */
html.pv-redesign .pv-showcase {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--pv-white) 0%, var(--pv-surface) 100%);
    position: relative;
}

html.pv-redesign .pv-showcase::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.06) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    pointer-events: none;
}

html.pv-redesign .pv-showcase .row {
    align-items: center;
}

html.pv-redesign .pv-showcase__img-wrap {
    position: relative;
    text-align: center;
}

html.pv-redesign .pv-showcase__img-wrap::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(214, 77, 48, 0.1), rgba(5, 169, 128, 0.1));
    border-radius: 50%;
    top: 10%;
    left: 10%;
    z-index: 0;
}

html.pv-redesign .pv-showcase__img-wrap img {
    position: relative;
    z-index: 1;
    max-height: 520px;
    filter: drop-shadow(0 30px 60px rgba(30, 46, 85, 0.15));
}

html.pv-redesign .pv-check-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

html.pv-redesign .pv-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--pv-navy);
    line-height: 1.5;
}

html.pv-redesign .pv-check-list li i {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, var(--pv-green), var(--pv-teal));
    color: var(--pv-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}

/* --- Benefits (cards + image) --- */
html.pv-redesign .pv-benefits {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--pv-surface) 48%, #f0f5fa 100%);
    position: relative;
    overflow: visible;
    isolation: isolate;
}

html.pv-redesign .pv-benefits__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

html.pv-redesign .pv-benefits__bg-grid {
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: -52%;
    height: 88%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.07) 1px, transparent 1px);
    background-size: 52px 52px;
    background-position: 0 0;
    transform: perspective(920px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.72;
    mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 78%, transparent 100%);
    will-change: background-position, transform;
}

html.pv-redesign .pv-benefits__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(42px);
    opacity: 0.55;
    will-change: transform;
}

html.pv-redesign .pv-benefits__bg-orb--1 {
    width: 280px;
    height: 280px;
    top: 8%;
    left: 4%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.35) 0%, transparent 70%);
}

html.pv-redesign .pv-benefits__bg-orb--2 {
    width: 320px;
    height: 320px;
    top: 42%;
    right: 6%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.32) 0%, transparent 70%);
}

html.pv-redesign .pv-benefits__bg-orb--3 {
    width: 240px;
    height: 240px;
    bottom: 10%;
    left: 38%;
    background: radial-gradient(circle, rgba(255, 203, 108, 0.38) 0%, transparent 70%);
}

html.pv-redesign .pv-benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 8% 20%, rgba(214, 77, 48, 0.09) 0%, transparent 68%),
        radial-gradient(ellipse 45% 38% at 92% 75%, rgba(5, 169, 128, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 35% 30% at 50% 0%, rgba(255, 203, 108, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: pv-benefits-ambient 10s ease-in-out infinite;
}

@keyframes pv-benefits-ambient {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
}

html.pv-redesign .pv-benefits::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(30, 46, 85, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-benefits .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-benefits .pv-section-head {
    margin-bottom: 56px;
}

html.pv-redesign .pv-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    height: fit-content;
}

@media (min-width: 992px) {
    html.pv-redesign .pv-benefits__row {
        align-items: stretch !important;
    }

    html.pv-redesign .pv-benefits__visual-col {
        display: flex;
        overflow: visible;
    }

    html.pv-redesign .pv-benefits__showcase {
        flex: 1;
    }
}

html.pv-redesign .pv-benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 18px;
    padding: 26px 22px 54px;
    text-align: left;
    border: 1px solid rgba(30, 46, 85, 0.07);
    box-shadow:
        0 10px 36px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.45s var(--pv-ease), box-shadow 0.45s var(--pv-ease), border-color 0.45s var(--pv-ease);
    overflow: hidden;
}

html.pv-redesign .pv-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pv-orange), var(--pv-gold), var(--pv-green));
    opacity: 0;
    transition: opacity 0.45s var(--pv-ease);
}

html.pv-redesign .pv-benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 77, 48, 0.14);
    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

html.pv-redesign .pv-benefit-card:hover::before {
    opacity: 1;
}

html.pv-redesign .pv-benefit-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(145deg, rgba(244, 247, 251, 1), rgba(255, 255, 255, 1));
    border: 1px solid rgba(30, 46, 85, 0.06);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.45s var(--pv-ease);
}

html.pv-redesign .pv-benefit-card--1 .pv-benefit-card__icon { background: linear-gradient(145deg, rgba(214, 77, 48, 0.1), #fff); }
html.pv-redesign .pv-benefit-card--2 .pv-benefit-card__icon { background: linear-gradient(145deg, rgba(5, 169, 128, 0.1), #fff); }
html.pv-redesign .pv-benefit-card--3 .pv-benefit-card__icon { background: linear-gradient(145deg, rgba(37, 99, 235, 0.08), #fff); }
html.pv-redesign .pv-benefit-card--4 .pv-benefit-card__icon { background: linear-gradient(145deg, rgba(255, 203, 108, 0.14), #fff); }

html.pv-redesign .pv-benefit-card:hover .pv-benefit-card__icon {
    transform: scale(1.06) rotate(-4deg);
}

html.pv-redesign .pv-benefit-card__icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

html.pv-redesign .pv-benefit-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pv-navy);
    margin: 0 0 8px;
    line-height: 1.3;
}

html.pv-redesign .pv-benefit-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: var(--pv-muted);
}

html.pv-redesign .pv-benefit-card__check {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--pv-white);
    background: linear-gradient(135deg, var(--pv-green), var(--pv-teal));
    box-shadow: 0 8px 18px rgba(5, 169, 128, 0.28);
    transition: transform 0.4s var(--pv-ease);
}

html.pv-redesign .pv-benefit-card--1 .pv-benefit-card__check { background: linear-gradient(135deg, var(--pv-orange), #e8783a); box-shadow: 0 8px 18px rgba(214, 77, 48, 0.28); }
html.pv-redesign .pv-benefit-card--2 .pv-benefit-card__check { background: linear-gradient(135deg, var(--pv-green), var(--pv-teal)); }
html.pv-redesign .pv-benefit-card--3 .pv-benefit-card__check { background: linear-gradient(135deg, #2563eb, #60a5fa); box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22); }
html.pv-redesign .pv-benefit-card--4 .pv-benefit-card__check { background: linear-gradient(135deg, var(--pv-gold), #e8a830); box-shadow: 0 8px 18px rgba(255, 203, 108, 0.35); color: var(--pv-navy); }

html.pv-redesign .pv-benefit-card:hover .pv-benefit-card__check {
    transform: scale(1.08);
}

/* Benefits image showcase */
html.pv-redesign .pv-benefits__showcase {
    position: relative;
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    overflow: visible;
    transform-style: preserve-3d;
    perspective: 1200px;
}

html.pv-redesign .pv-benefits__showcase-glow {
    position: absolute;
    inset: 6% 8%;
    background:
        radial-gradient(circle at 45% 42%, rgba(214, 77, 48, 0.16) 0%, transparent 55%),
        radial-gradient(circle at 68% 68%, rgba(5, 169, 128, 0.14) 0%, transparent 50%);
    filter: blur(28px);
    pointer-events: none;
    animation: pv-benefits-glow 5s ease-in-out infinite;
}

@keyframes pv-benefits-glow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

html.pv-redesign .pv-benefits__showcase-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

html.pv-redesign .pv-benefits__showcase-ring--1 {
    width: 88%;
    height: 88%;
    border: 1px dashed rgba(30, 46, 85, 0.14);
}

html.pv-redesign .pv-benefits__showcase-ring--2 {
    width: 98%;
    height: 98%;
    border: 1px solid rgba(5, 169, 128, 0.16);
}

html.pv-redesign .pv-benefits__accent {
    position: absolute;
    border-radius: 6px;
    z-index: 0;
    pointer-events: none;
}

html.pv-redesign .pv-benefits__accent--gold {
    width: 48%;
    height: 12px;
    bottom: 10%;
    left: 6%;
    background: linear-gradient(90deg, var(--pv-gold), #f0c060);
    box-shadow: 0 6px 20px rgba(255, 203, 108, 0.35);
    animation: pv-benefits-accent-float 4s ease-in-out infinite;
}

html.pv-redesign .pv-benefits__accent--green {
    width: 58%;
    height: 16px;
    bottom: 6%;
    left: 3%;
    background: linear-gradient(90deg, var(--pv-green), var(--pv-teal));
    box-shadow: 0 8px 24px rgba(5, 169, 128, 0.25);
    z-index: -1;
    animation: pv-benefits-accent-float 4.8s ease-in-out infinite reverse;
}

@keyframes pv-benefits-accent-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

html.pv-redesign .pv-benefits__frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: auto;
    max-width: calc(100% - 24px);
    max-height: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: visible;
    padding: 3px;
    background: linear-gradient(145deg, rgba(214, 77, 48, 0.55), rgba(255, 203, 108, 0.45), rgba(5, 169, 128, 0.55));
    box-shadow:
        0 28px 60px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset;
    transform-style: preserve-3d;
    will-change: transform;
    margin: 0 auto;
}

html.pv-redesign .pv-benefits__frame-media {
    position: absolute;
    inset: 3px;
    border-radius: 17px;
    overflow: hidden;
}

html.pv-redesign .pv-benefits__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    display: block;
    border-radius: 17px;
    filter: drop-shadow(0 24px 48px rgba(30, 46, 85, 0.14));
    transition: transform 0.8s var(--pv-ease), filter 0.5s ease;
}

html.pv-redesign .pv-benefits__frame-shine {
    position: absolute;
    inset: 0;
    border-radius: 17px;
    background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.42) 50%, transparent 64%);
    transform: translateX(-130%);
    pointer-events: none;
    z-index: 2;
}

html.pv-redesign .pv-benefits__frame::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 17px;
    pointer-events: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 -50px 70px rgba(30, 46, 85, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 30%, transparent 100%);
    z-index: 1;
}

html.pv-redesign .pv-benefits__showcase:hover .pv-benefits__frame img {
    transform: scale(1.04);
    filter: brightness(1.04) contrast(1.02) drop-shadow(0 24px 48px rgba(30, 46, 85, 0.16));
}

html.pv-redesign .pv-benefits__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    right: auto;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pv-navy);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

html.pv-redesign .pv-benefits__badge i {
    color: var(--pv-orange);
    font-size: 12px;
}

/* --- CTA Band --- */
html.pv-redesign .pv-cta-band {
    padding: 110px 0;
    background:
        linear-gradient(135deg, rgba(214, 77, 48, 0.78) 0%, rgba(30, 46, 85, 0.86) 50%, rgba(10, 15, 26, 0.94) 100%),
        linear-gradient(135deg, #1a2744 0%, #0f1729 45%, var(--pv-dark) 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

html.pv-redesign .pv-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("../images/cta-bg.webp") center/cover no-repeat;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

html.pv-redesign .pv-cta-band::after {
    content: '';
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: -55%;
    height: 90%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    transform: perspective(900px) rotateX(74deg);
    transform-origin: center top;
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
    animation: pv-cta-grid-drift 32s linear infinite;
    mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 70%, transparent 100%);
}

@keyframes pv-cta-grid-drift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 0 52px, 52px 0; }
}

html.pv-redesign .pv-cta-band__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

html.pv-redesign .pv-cta-band__orb--1 {
    width: 420px;
    height: 420px;
    top: -12%;
    left: -8%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.45) 0%, transparent 68%);
    animation: pv-cta-orb-1 9s ease-in-out infinite;
}

html.pv-redesign .pv-cta-band__orb--2 {
    width: 360px;
    height: 360px;
    bottom: -15%;
    right: -6%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.38) 0%, transparent 70%);
    animation: pv-cta-orb-2 11s ease-in-out infinite;
}

html.pv-redesign .pv-cta-band__orb--3 {
    width: 280px;
    height: 280px;
    top: 30%;
    right: 18%;
    background: radial-gradient(circle, rgba(255, 203, 108, 0.22) 0%, transparent 72%);
    animation: pv-cta-orb-3 7s ease-in-out infinite;
}

@keyframes pv-cta-orb-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(24px, 18px) scale(1.08); }
}

@keyframes pv-cta-orb-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -14px) scale(1.06); }
}

@keyframes pv-cta-orb-3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.7; }
    50% { transform: translate(-12px, 10px); opacity: 1; }
}

html.pv-redesign .pv-cta-band .container {
    position: relative;
    z-index: 2;
}

html.pv-redesign .pv-cta-band__inner {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 40px 42px;
    text-align: center;
    border-radius: calc(var(--pv-radius) + 4px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

html.pv-redesign .pv-cta-band__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pv-orange), var(--pv-gold), var(--pv-green));
    opacity: 0.9;
}

html.pv-redesign .pv-cta-band__shine {
    position: absolute;
    inset: 0;
    width: 50%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: translateX(-140%);
    pointer-events: none;
}

html.pv-redesign .pv-cta-band__label {
    justify-content: center;
    color: var(--pv-gold) !important;
}

html.pv-redesign .pv-cta-band__title {
    max-width: 720px;
    margin: 0 auto 14px !important;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

html.pv-redesign .pv-cta-band__desc {
    color: rgba(255, 255, 255, 0.82) !important;
    margin: 0 auto !important;
    text-align: center;
    max-width: 580px;
}

html.pv-redesign .pv-cta-band__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

html.pv-redesign .pv-cta-band__phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 22px 12px 14px;
    border-radius: 100px;
    text-decoration: none;
    background: rgba(10, 15, 26, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition:
        transform 0.4s var(--pv-ease),
        border-color 0.4s var(--pv-ease),
        box-shadow 0.4s var(--pv-ease);
}

html.pv-redesign .pv-cta-band__phone:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 203, 108, 0.45);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 203, 108, 0.15);
    text-decoration: none;
}

html.pv-redesign .pv-cta-band__phone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--pv-white);
    background: linear-gradient(135deg, var(--pv-orange), var(--pv-gold));
    box-shadow: 0 8px 22px rgba(214, 77, 48, 0.35);
    flex-shrink: 0;
}

html.pv-redesign .pv-cta-band__phone-copy {
    text-align: left;
}

html.pv-redesign .pv-cta-band__phone-copy small {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 2px;
}

html.pv-redesign .pv-cta-band__phone-copy strong {
    display: block;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--pv-white);
    line-height: 1.1;
    letter-spacing: 0.01em;
    transition: color 0.3s;
}

html.pv-redesign .pv-cta-band__phone:hover .pv-cta-band__phone-copy strong {
    color: var(--pv-gold);
}

html.pv-redesign .pv-cta-band__btn {
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 700;
    box-shadow:
        0 14px 36px rgba(5, 169, 128, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.4s var(--pv-ease), box-shadow 0.4s var(--pv-ease);
}

html.pv-redesign .pv-cta-band__btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 44px rgba(5, 169, 128, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

html.pv-redesign .pv-cta-band__trust {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

html.pv-redesign .pv-cta-band__trust li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.72);
}

html.pv-redesign .pv-cta-band__trust i {
    font-size: 13px;
    color: var(--pv-gold);
}

/* --- Partners marquee --- */
html.pv-redesign .pv-partners {
    padding: 80px 0 72px;
    background: var(--pv-white);
    border-top: 1px solid rgba(30, 46, 85, 0.06);
    border-bottom: 1px solid rgba(30, 46, 85, 0.06);
    overflow: hidden;
}

html.pv-redesign .pv-partners-section {
    padding: 0;
}

html.pv-redesign .pv-partners-section .pv-section-head {
    margin-bottom: 44px;
}

html.pv-redesign .pv-partners-marquee {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    padding: 8px 0 4px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

html.pv-redesign .pv-partners-marquee::before,
html.pv-redesign .pv-partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

html.pv-redesign .pv-partners-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--pv-white) 0%, transparent 100%);
}

html.pv-redesign .pv-partners-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--pv-white) 0%, transparent 100%);
}

html.pv-redesign .pv-partners-marquee__track {
    display: flex;
    width: max-content;
    gap: 28px;
    will-change: transform;
}

html.pv-redesign .pv-partners-marquee.is-ready .pv-partners-marquee__track {
    animation: none;
}

html.pv-redesign .pv-partners-marquee.is-paused .pv-partners-marquee__track {
    animation-play-state: paused;
}

html.pv-redesign .pv-partners-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 28px;
}

html.pv-redesign .pv-partners-marquee__item {
    flex-shrink: 0;
    width: 188px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 28px;
    background: var(--pv-surface);
    border: 1px solid rgba(30, 46, 85, 0.07);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s var(--pv-ease), box-shadow 0.35s var(--pv-ease), border-color 0.35s var(--pv-ease);
}

html.pv-redesign .pv-partners-marquee__item:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 77, 48, 0.16);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

html.pv-redesign .pv-partners-marquee__item img {
    display: block;
    width: auto;
    height: auto;
    max-width: 132px;
    max-height: 48px;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    filter: contrast(1.02);
}

/* --- Testimonials --- */
html.pv-redesign .pv-testimonials {
    padding: 0;
    background: transparent;
    position: relative;
}

html.pv-redesign .pv-testimonials-section {
    padding: 120px 0;
    position: relative;
    overflow: visible;
    isolation: isolate;
    background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 42%, #f8fafc 100%);
}

html.pv-redesign .pv-testimonials-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

html.pv-redesign .pv-testimonials-section__bg-grid {
    position: absolute;
    left: -18%;
    right: -18%;
    bottom: -50%;
    height: 82%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0;
    transform: perspective(900px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.65;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
}

html.pv-redesign .pv-testimonials-section__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
}

html.pv-redesign .pv-testimonials-section__bg-orb--1 {
    width: 260px;
    height: 260px;
    top: 12%;
    left: 6%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.28) 0%, transparent 70%);
}

html.pv-redesign .pv-testimonials-section__bg-orb--2 {
    width: 300px;
    height: 300px;
    top: 38%;
    right: 8%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.26) 0%, transparent 70%);
}

html.pv-redesign .pv-testimonials-section__bg-orb--3 {
    width: 220px;
    height: 220px;
    bottom: 14%;
    left: 42%;
    background: radial-gradient(circle, rgba(255, 203, 108, 0.3) 0%, transparent 70%);
}

html.pv-redesign .pv-testimonials-section__bg-map {
    position: absolute;
    right: -6%;
    top: 8%;
    width: min(58%, 720px);
    height: 72%;
    background: url("../images/tes-map.webp") no-repeat right center / contain;
    opacity: 0.22;
}

html.pv-redesign .pv-testimonials-section__bg-accent {
    position: absolute;
    right: 2%;
    bottom: 8%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(5, 169, 128, 0.22), rgba(65, 196, 186, 0.35));
    box-shadow: 0 20px 60px rgba(5, 169, 128, 0.18);
}

html.pv-redesign .pv-testimonials-section .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-testimonial-slider {
    margin-top: 12px;
}

html.pv-redesign .pv-testimonial-slider__viewport {
    overflow: hidden;
    padding: 16px 4px 24px;
    margin: 0 -4px;
}

html.pv-redesign .pv-testimonial-slider__track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

html.pv-redesign .pv-testimonial-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 0;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    padding: 32px 30px 28px;
    border: 1px solid rgba(30, 46, 85, 0.07);
    box-shadow:
        0 14px 40px rgba(15, 23, 42, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    transition: box-shadow 0.4s var(--pv-ease), transform 0.4s var(--pv-ease);
}

html.pv-redesign .pv-testimonial-card:hover {
    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-4px);
}

html.pv-redesign .pv-testimonial-card__quote {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(214, 77, 48, 0.12), rgba(255, 203, 108, 0.1));
    color: var(--pv-orange);
    font-size: 16px;
    margin-bottom: 16px;
}

html.pv-redesign .pv-testimonial-card__stars {
    color: var(--pv-gold);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

html.pv-redesign .pv-testimonial-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--pv-muted);
    margin: 0 0 22px;
}

html.pv-redesign .pv-testimonial-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--pv-orange);
}

html.pv-redesign .pv-testimonial-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 8px;
}

html.pv-redesign .pv-testimonial-slider__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(30, 46, 85, 0.1);
    background: rgba(255, 255, 255, 0.9);
    color: var(--pv-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--pv-ease);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

html.pv-redesign .pv-testimonial-slider__arrow:hover {
    background: var(--pv-navy);
    color: var(--pv-white);
    border-color: var(--pv-navy);
    transform: translateY(-2px);
}

html.pv-redesign .pv-testimonial-slider__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

html.pv-redesign .pv-testimonial-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(5, 169, 128, 0.45);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s var(--pv-ease);
}

html.pv-redesign .pv-testimonial-slider__dot.is-active {
    width: 28px;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--pv-green), var(--pv-teal));
    border-color: transparent;
}

html.pv-redesign .pv-testimonials .container::after,
html.pv-redesign .pv-testimonials-section::after {
    display: none !important;
}

@media (max-width: 767px) {
    html.pv-redesign .pv-testimonial-card {
        flex: 0 0 100%;
    }

    html.pv-redesign .pv-testimonials-section {
        padding: 90px 0;
    }

    html.pv-redesign .pv-testimonials-section__bg-map {
        opacity: 0.12;
        width: 90%;
        right: -20%;
    }
}

/* --- Demo CTA --- */
html.pv-redesign .pv-demo-cta {
    position: relative;
    padding: 0;
    margin-bottom: -10px;
    overflow: visible;
    isolation: isolate;
    z-index: 4;
}

html.pv-redesign .pv-demo-cta__bg {
    position: absolute;
    inset: 0;
    border-radius: 0;
    overflow: hidden;
    z-index: 0;
}

html.pv-redesign .pv-demo-cta__bg-photo {
    position: absolute;
    inset: 0;
    background: url("../images/session-bg.webp") center 70% / cover no-repeat;
    transform: scale(1.04);
}

html.pv-redesign .pv-demo-cta__bg-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(214, 77, 48, 0.82) 0%,
            rgba(232, 140, 58, 0.72) 28%,
            rgba(255, 203, 108, 0.58) 48%,
            rgba(5, 169, 128, 0.78) 100%);
    background-size: 200% 200%;
    animation: pv-demo-cta-gradient 14s ease-in-out infinite;
}

@keyframes pv-demo-cta-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

html.pv-redesign .pv-demo-cta__bg-grid {
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: -55%;
    height: 90%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    transform: perspective(820px) rotateX(74deg);
    transform-origin: center top;
    opacity: 0.45;
    mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 70%, transparent 100%);
}

html.pv-redesign .pv-demo-cta__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.12) 48%, transparent 66%);
    transform: translateX(-120%);
    animation: pv-demo-cta-shine 7s ease-in-out infinite;
}

@keyframes pv-demo-cta-shine {
    0%, 100% { transform: translateX(-120%); opacity: 0; }
    45% { opacity: 1; }
    55% { transform: translateX(120%); opacity: 0; }
}

html.pv-redesign .pv-demo-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pv-orange), var(--pv-gold), var(--pv-green), var(--pv-teal));
    z-index: 2;
}

html.pv-redesign .pv-demo-cta .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-demo-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 32px;
    min-height: 220px;
    padding: 38px 0 34px;
}

html.pv-redesign .pv-demo-cta__content {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 720px;
}

html.pv-redesign .pv-demo-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

html.pv-redesign .pv-demo-cta__headline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-bottom: 10px;
}

html.pv-redesign .pv-demo-cta h2 {
    color: var(--pv-white) !important;
    font-size: clamp(1.35rem, 2.4vw, 2rem) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-shadow: 0 8px 24px rgba(15, 23, 42, 0.18) !important;
    text-transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    letter-spacing: -0.02em;
}

html.pv-redesign .pv-demo-cta h2::after {
    display: none !important;
}

html.pv-redesign .pv-demo-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    max-width: 560px;
}

html.pv-redesign .pv-demo-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--pv-white);
    background: linear-gradient(135deg, var(--pv-orange) 0%, #e8783a 42%, var(--pv-green) 100%);
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.35s var(--pv-ease), box-shadow 0.35s var(--pv-ease);
    white-space: nowrap;
    flex-shrink: 0;
}

html.pv-redesign .pv-demo-cta__btn:hover {
    color: var(--pv-white);
    transform: translateY(-3px);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

html.pv-redesign .pv-demo-cta__btn i {
    transition: transform 0.3s var(--pv-ease);
}

html.pv-redesign .pv-demo-cta__btn:hover i {
    transform: translateX(4px);
}

html.pv-redesign .pv-demo-cta__btn--mobile {
    display: none;
    margin-top: 18px;
}

html.pv-redesign .pv-demo-cta__visual {
    position: relative;
    flex: 0 0 min(34%, 300px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 200px;
    margin-bottom: -72px;
    pointer-events: none;
    z-index: 6;
}

html.pv-redesign .pv-demo-cta__visual-glow {
    position: absolute;
    width: 78%;
    height: 78%;
    left: 11%;
    bottom: 18%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, transparent 68%);
    filter: blur(18px);
    animation: pv-demo-cta-glow 4s ease-in-out infinite;
}

@keyframes pv-demo-cta-glow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

html.pv-redesign .pv-demo-cta__visual-ring {
    position: absolute;
    width: 88%;
    height: 88%;
    left: 6%;
    bottom: 8%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.22);
}

html.pv-redesign .pv-demo-cta__device {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    max-height: 300px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 28px 50px rgba(15, 23, 42, 0.35));
    transform: translateY(8px) rotate(-4deg);
    will-change: transform;
}

@media (max-width: 991px) {
    html.pv-redesign .pv-demo-cta {
        margin-bottom: 24px;
    }

    html.pv-redesign .pv-demo-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        min-height: 0;
        padding: 34px 0 28px;
    }

    html.pv-redesign .pv-demo-cta__headline {
        display: block;
    }

    html.pv-redesign .pv-demo-cta__btn--inline {
        display: none;
    }

    html.pv-redesign .pv-demo-cta__btn--mobile {
        display: inline-flex;
    }

    html.pv-redesign .pv-demo-cta__visual {
        align-self: center;
        flex: 0 0 auto;
        width: 100%;
        max-width: 280px;
        margin-bottom: 0;
        min-height: 0;
    }

    html.pv-redesign .pv-demo-cta__device {
        max-height: 220px;
        transform: none;
    }
}

@media (max-width: 575px) {
    html.pv-redesign .pv-demo-cta h2 {
        font-size: 1.28rem !important;
    }

    html.pv-redesign .pv-demo-cta p {
        font-size: 14px;
    }
}

/* --- Footer --- */
html.pv-redesign footer.pv-footer {
    background:
        linear-gradient(180deg, #0d1220 0%, var(--pv-dark) 38%, #060a12 100%) !important;
    padding-top: 88px !important;
    padding-bottom: 0 !important;
    position: relative;
    z-index: 2;
    overflow: hidden;
    isolation: isolate;
}

html.pv-redesign .pv-footer__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-footer__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 20%, transparent 100%);
    opacity: 0.5;
}

html.pv-redesign .pv-footer__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
}

html.pv-redesign .pv-footer__bg-orb--1 {
    width: 320px;
    height: 320px;
    top: -8%;
    left: -4%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.45) 0%, transparent 70%);
}

html.pv-redesign .pv-footer__bg-orb--2 {
    width: 380px;
    height: 380px;
    top: 18%;
    right: -6%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.35) 0%, transparent 70%);
}

html.pv-redesign .pv-footer__bg-orb--3 {
    width: 260px;
    height: 260px;
    bottom: 18%;
    left: 38%;
    background: radial-gradient(circle, rgba(65, 196, 186, 0.22) 0%, transparent 70%);
}

html.pv-redesign .pv-footer__bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(70%, 900px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    box-shadow: 0 0 80px 20px rgba(5, 169, 128, 0.12);
}

html.pv-redesign footer.pv-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pv-orange), var(--pv-gold), var(--pv-green), var(--pv-teal));
    z-index: 2;
}

html.pv-redesign footer.pv-footer .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-footer__main {
    padding-bottom: 12px;
}

html.pv-redesign .pv-footer__logo {
    display: inline-block;
    margin-bottom: 22px;
    position: relative;
}

html.pv-redesign .pv-footer__logo::after {
    content: '';
    position: absolute;
    inset: -12px -16px;
    background: radial-gradient(circle at 30% 50%, rgba(214, 77, 48, 0.14) 0%, transparent 68%);
    filter: blur(12px);
    z-index: -1;
    pointer-events: none;
}

html.pv-redesign footer.pv-footer .logo img {
    max-width: 180px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

html.pv-redesign .pv-footer__desc {
    color: rgba(255, 255, 255, 0.62) !important;
    line-height: 1.8;
    font-size: 14px;
    margin: 0 0 26px;
    max-width: 360px;
}

html.pv-redesign .pv-footer__title {
    color: var(--pv-white);
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 22px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

html.pv-redesign .pv-footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--pv-orange), var(--pv-green));
}

html.pv-redesign footer.pv-footer h4 {
    color: var(--pv-white);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

html.pv-redesign .pv-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

html.pv-redesign .pv-footer__links li {
    margin: 0 0 12px;
}

html.pv-redesign .pv-footer__links li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 14px !important;
    text-decoration: none;
    transition: color 0.3s var(--pv-ease), transform 0.3s var(--pv-ease);
}

html.pv-redesign .pv-footer__links li a i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px !important;
    color: var(--pv-orange) !important;
    background: rgba(214, 77, 48, 0.12);
    border: 1px solid rgba(214, 77, 48, 0.18);
    transition: all 0.3s var(--pv-ease);
    flex-shrink: 0;
}

html.pv-redesign .pv-footer__links li a:hover {
    color: var(--pv-white) !important;
    transform: translateX(4px);
    padding-left: 0 !important;
}

html.pv-redesign .pv-footer__links li a:hover i {
    background: linear-gradient(135deg, var(--pv-orange), var(--pv-green));
    color: var(--pv-white) !important;
    border-color: transparent;
}

html.pv-redesign footer.pv-footer ul li a {
    color: rgba(255, 255, 255, 0.68) !important;
    transition: color 0.3s var(--pv-ease), transform 0.3s var(--pv-ease);
    font-size: 14px !important;
}

html.pv-redesign footer.pv-footer ul li a:hover {
    color: var(--pv-white) !important;
    padding-left: 0 !important;
}

html.pv-redesign footer.pv-footer ul li a i {
    color: var(--pv-orange) !important;
    font-size: 11px !important;
}

html.pv-redesign .pv-footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

html.pv-redesign .pv-footer__social li {
    margin: 0 !important;
}

html.pv-redesign footer.pv-footer .social li a,
html.pv-redesign .pv-footer__social li a {
    width: 46px;
    height: 46px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.35s var(--pv-ease);
    position: relative;
    overflow: hidden;
}

html.pv-redesign .pv-footer__social li a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pv-orange), var(--pv-green));
    opacity: 0;
    transition: opacity 0.35s var(--pv-ease);
}

html.pv-redesign .pv-footer__social li a i {
    position: relative;
    z-index: 1;
    color: inherit !important;
    font-size: 16px !important;
}

html.pv-redesign footer.pv-footer .social li a:hover,
html.pv-redesign .pv-footer__social li a:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 30px rgba(214, 77, 48, 0.22);
    padding-left: 0 !important;
    color: var(--pv-white) !important;
}

html.pv-redesign .pv-footer__social li a:hover::before {
    opacity: 1;
}

html.pv-redesign .pv-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

html.pv-redesign .pv-footer__contact li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 14px !important;
    padding: 14px 16px !important;
    padding-left: 16px !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    position: relative;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.35s var(--pv-ease), border-color 0.35s var(--pv-ease), transform 0.35s var(--pv-ease);
}

html.pv-redesign .pv-footer__contact li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

html.pv-redesign .pv-footer__contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid !important;
    place-items: center;
    background: linear-gradient(145deg, rgba(214, 77, 48, 0.18), rgba(5, 169, 128, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 18px rgba(0, 0, 0, 0.18);
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
}

html.pv-redesign .pv-footer__contact-icon i {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 16px;
    height: 16px;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 15px !important;
    color: var(--pv-white) !important;
    line-height: 1 !important;
    text-align: center;
}

html.pv-redesign .pv-footer__contact-text {
    display: block !important;
    color: rgba(255, 255, 255, 0.72) !important;
    background: transparent !important;
    background-color: transparent !important;
    line-height: 1.65;
    padding: 0 !important;
    margin: 0;
    width: auto !important;
    max-width: none;
    font-size: 14px !important;
    text-decoration: none;
    transition: color 0.3s var(--pv-ease);
    align-self: center;
}

html.pv-redesign a.pv-footer__contact-text:hover {
    color: var(--pv-white) !important;
    background: transparent !important;
}

html.pv-redesign footer.pv-footer ul.info.pv-footer__contact li {
    padding-left: 16px !important;
}

html.pv-redesign footer.pv-footer ul.info.pv-footer__contact li i {
    position: static !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
}

html.pv-redesign footer.pv-footer p {
    color: rgba(255, 255, 255, 0.62) !important;
    line-height: 1.8;
    font-size: 14px;
}

html.pv-redesign .pv-footer__bottom,
html.pv-redesign footer.pv-footer .copy {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 56px;
    padding: 12px 0 !important;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

html.pv-redesign .pv-footer__bottom .container {
    padding-top: 0;
    padding-bottom: 0;
}

html.pv-redesign .pv-footer__bottom .row {
    --bs-gutter-y: 0;
    min-height: 36px;
    align-items: center !important;
    margin-top: 0;
    margin-bottom: 0;
}

html.pv-redesign .pv-footer__bottom p,
html.pv-redesign footer.pv-footer .copy p {
    margin: 0 !important;
    padding: 0;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.45) !important;
}

html.pv-redesign .pv-footer__legal {
    list-style: none;
    margin: 0 !important;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

html.pv-redesign .pv-footer__legal li {
    margin: 0 !important;
}

html.pv-redesign .pv-footer__legal a {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 13px !important;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s var(--pv-ease);
}

html.pv-redesign .pv-footer__legal a:hover {
    color: var(--pv-teal) !important;
}

html.pv-redesign .copy ul li {
    margin: 0 !important;
}

@media (max-width: 767px) {
    html.pv-redesign footer.pv-footer {
        padding-top: 72px !important;
    }

    html.pv-redesign .pv-footer__brand {
        margin-bottom: 8px;
    }

    html.pv-redesign .pv-footer__bottom .text-md-end {
        text-align: left !important;
    }

    html.pv-redesign .pv-footer__bottom p,
    html.pv-redesign footer.pv-footer .copy p {
        margin: 0 !important;
    }
}

/* --- Inner page heroes --- */
html.pv-redesign .pv-page-hero {
    position: relative;
    margin-top: 0 !important;
    padding: calc(var(--pv-header-h) + 72px) 0 88px;
    min-height: 460px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
}

html.pv-redesign .pv-page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

html.pv-redesign .pv-page-hero__bg-img {
    position: absolute;
    inset: 0;
    background: center / cover no-repeat;
    transform: scale(1.05);
    will-change: transform;
}

html.pv-redesign .pv-page-hero--about .pv-page-hero__bg-img {
    background-image: url("../images/about-banner.webp");
}

html.pv-redesign .pv-page-hero--features .pv-page-hero__bg-img {
    background-image: url("../images/feature-banner.webp");
}

html.pv-redesign .pv-page-hero--portfolio .pv-page-hero__bg-img {
    background-image: url("../images/feature-banner.webp");
}

html.pv-redesign .pv-page-hero--portfolio .pv-page-hero__content {
    max-width: 820px;
}

html.pv-redesign .pv-page-hero--referral .pv-page-hero__bg-img {
    background-image: url("../images/ref-bg.webp");
}

html.pv-redesign .pv-page-hero--contact .pv-page-hero__bg-img {
    background-image: url("../images/contact-bg.webp");
}

html.pv-redesign .pv-page-hero--desktop .pv-page-hero__bg-img,
html.pv-redesign .pv-page-hero--pos .pv-page-hero__bg-img {
    background-image: url("../images/pos-banner.webp");
}

html.pv-redesign .pv-page-hero--desktop .pv-page-hero__content {
    max-width: 760px;
}

html.pv-redesign .pv-page-hero--pos .pv-page-hero__content {
    max-width: 820px;
}

html.pv-redesign .pv-page-hero--ecommerce .pv-page-hero__bg-img {
    background-image: url("../images/ecommerce-bg.webp");
}

html.pv-redesign .pv-page-hero--ecommerce .pv-page-hero__content {
    max-width: 820px;
}

html.pv-redesign .pv-page-hero--pay-table .pv-page-hero__bg-img {
    background-image: url("../images/pay-bg.webp");
}

html.pv-redesign .pv-page-hero--pay-table .pv-page-hero__content {
    max-width: 780px;
}

html.pv-redesign .pv-page-hero--mobile-payment .pv-page-hero__bg-img {
    background-image: url("../images/feature-banner.webp");
}

html.pv-redesign .pv-page-hero--mobile-payment .pv-page-hero__content {
    max-width: 820px;
}

html.pv-redesign .pv-page-hero--wireless .pv-page-hero__bg-img {
    background-image: url("../images/wireless-bg.webp");
}

html.pv-redesign .pv-page-hero--wireless .pv-page-hero__content {
    max-width: 760px;
}

html.pv-redesign .pv-page-hero--restaurant .pv-page-hero__bg-img {
    background-image: url("../images/resturant-bg.webp");
}

html.pv-redesign .pv-page-hero--restaurant .pv-page-hero__content {
    max-width: 800px;
}

html.pv-redesign .pv-page-hero--contact .pv-page-hero__content {
    max-width: 720px;
}

html.pv-redesign .pv-page-hero--referral .pv-page-hero__content {
    max-width: 760px;
}

html.pv-redesign .pv-page-hero--features .pv-page-hero__content {
    max-width: 820px;
}

html.pv-redesign .pv-page-hero--features h1 {
    max-width: 780px;
}

html.pv-redesign .pv-page-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(10, 15, 26, 0.92) 0%, rgba(30, 46, 85, 0.78) 42%, rgba(10, 15, 26, 0.55) 100%),
        linear-gradient(180deg, transparent 0%, rgba(10, 15, 26, 0.35) 100%);
}

html.pv-redesign .pv-page-hero__bg-grid {
    position: absolute;
    left: -15%;
    right: -15%;
    bottom: -48%;
    height: 80%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(880px) rotateX(74deg);
    transform-origin: center top;
    opacity: 0.45;
    mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 72%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 72%, transparent 100%);
}

html.pv-redesign .pv-page-hero__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
}

html.pv-redesign .pv-page-hero__bg-orb--1 {
    width: 280px;
    height: 280px;
    top: 12%;
    right: 8%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.5) 0%, transparent 70%);
}

html.pv-redesign .pv-page-hero__bg-orb--2 {
    width: 320px;
    height: 320px;
    bottom: 10%;
    left: 55%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.35) 0%, transparent 70%);
}

html.pv-redesign .pv-page-hero__bg-orb--3 {
    width: 200px;
    height: 200px;
    top: 28%;
    left: 18%;
    background: radial-gradient(circle, rgba(255, 203, 108, 0.28) 0%, transparent 70%);
}

html.pv-redesign .pv-page-hero__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.07) 48%, transparent 64%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pv-orange), var(--pv-gold), var(--pv-green), var(--pv-teal));
    z-index: 2;
}

html.pv-redesign .pv-page-hero__container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-page-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

html.pv-redesign .pv-page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s var(--pv-ease);
}

html.pv-redesign .pv-page-hero__breadcrumb a:hover {
    color: var(--pv-gold);
}

html.pv-redesign .pv-page-hero__breadcrumb span[aria-current] {
    color: var(--pv-teal);
}

html.pv-redesign .pv-page-hero__content {
    max-width: 720px;
}

html.pv-redesign .pv-page-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pv-orange);
    margin-bottom: 14px;
}

html.pv-redesign .pv-page-hero__label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--pv-orange), var(--pv-green));
    border-radius: 2px;
}

html.pv-redesign .pv-page-hero h1 {
    margin: 0 0 18px !important;
    padding: 0 !important;
    font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em;
    color: var(--pv-white) !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

html.pv-redesign .pv-page-hero h1::after {
    display: none !important;
}

html.pv-redesign .pv-page-hero__accent {
    background: linear-gradient(135deg, var(--pv-orange) 0%, var(--pv-gold) 45%, var(--pv-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html.pv-redesign .pv-page-hero p {
    margin: 0 0 28px;
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    max-width: 640px;
}

html.pv-redesign .pv-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

html.pv-redesign .pv-page-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--pv-orange), #e8783a 45%, var(--pv-green));
    color: var(--pv-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s var(--pv-ease), box-shadow 0.35s var(--pv-ease);
}

html.pv-redesign .pv-page-hero__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(214, 77, 48, 0.35);
    color: var(--pv-white) !important;
}

html.pv-redesign .pv-page-hero__btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.35s var(--pv-ease);
}

html.pv-redesign .pv-page-hero__btn-ghost:hover {
    color: var(--pv-white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

html.pv-redesign .pv-page-hero__trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

html.pv-redesign .pv-page-hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 !important;
}

html.pv-redesign .pv-page-hero__trust i {
    color: var(--pv-teal) !important;
    font-size: 14px !important;
}

/* Inner page heroes ? tablet & mobile (premium responsive) */
@media (max-width: 991px) {
    html.pv-redesign .pv-page-hero {
        min-height: 0;
        padding: calc(var(--pv-header-h) + 36px) 0 72px;
        align-items: flex-start;
    }

    html.pv-redesign .pv-page-hero__container {
        width: 100%;
    }

    html.pv-redesign .pv-page-hero__content,
    html.pv-redesign .pv-page-hero--desktop .pv-page-hero__content,
    html.pv-redesign .pv-page-hero--pos .pv-page-hero__content,
    html.pv-redesign .pv-page-hero--ecommerce .pv-page-hero__content,
    html.pv-redesign .pv-page-hero--pay-table .pv-page-hero__content,
    html.pv-redesign .pv-page-hero--mobile-payment .pv-page-hero__content,
    html.pv-redesign .pv-page-hero--wireless .pv-page-hero__content,
    html.pv-redesign .pv-page-hero--restaurant .pv-page-hero__content,
    html.pv-redesign .pv-page-hero--contact .pv-page-hero__content,
    html.pv-redesign .pv-page-hero--referral .pv-page-hero__content,
    html.pv-redesign .pv-page-hero--features .pv-page-hero__content {
        max-width: 100%;
    }

    html.pv-redesign .pv-page-hero--features h1 {
        max-width: 100%;
    }

    html.pv-redesign .pv-page-hero__bg-img {
        background-position: center 22%;
        transform: scale(1.06);
    }

    html.pv-redesign .pv-page-hero__bg-overlay {
        background:
            linear-gradient(115deg, rgba(10, 15, 26, 0.82) 0%, rgba(30, 46, 85, 0.62) 45%, rgba(10, 15, 26, 0.72) 100%),
            linear-gradient(180deg, transparent 0%, rgba(10, 15, 26, 0.28) 100%);
    }

    html.pv-redesign .pv-page-hero h1 {
        font-size: clamp(2rem, 5.8vw, 2.75rem) !important;
    }

    html.pv-redesign .pv-page-hero__actions {
        gap: 12px;
    }
}

@media (max-width: 767px) {
    html.pv-redesign .pv-page-hero {
        padding: calc(var(--pv-header-h) + 16px) 0 52px;
        min-height: auto;
        align-items: flex-start;
    }

    html.pv-redesign .pv-page-hero__container {
        padding: 0 16px;
        border-radius: 0;
        background: transparent;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
    }

    html.pv-redesign .pv-page-hero__breadcrumb {
        margin-bottom: 14px;
        padding: 7px 12px;
        font-size: 11px;
        gap: 8px;
    }

    html.pv-redesign .pv-page-hero__content {
        max-width: 100%;
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
    }

    html.pv-redesign .pv-page-hero__label {
        font-size: 11px;
        margin-bottom: 10px;
        letter-spacing: 0.1em;
    }

    html.pv-redesign .pv-page-hero__label::before {
        width: 22px;
    }

    html.pv-redesign .pv-page-hero h1 {
        font-size: clamp(1.72rem, 7.4vw, 2.28rem) !important;
        line-height: 1.14 !important;
        margin-bottom: 14px !important;
        letter-spacing: -0.02em;
        text-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    html.pv-redesign .pv-page-hero p {
        font-size: 0.94rem !important;
        line-height: 1.68 !important;
        margin-bottom: 20px;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.86) !important;
    }

    html.pv-redesign .pv-page-hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 18px;
        width: 100%;
    }

    html.pv-redesign .pv-page-hero__actions .pv-btn,
    html.pv-redesign .pv-page-hero__actions .pv-hero__btn-primary,
    html.pv-redesign .pv-page-hero__btn,
    html.pv-redesign .pv-page-hero__btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 13px;
    }

    html.pv-redesign .pv-page-hero__trust {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 0;
        width: 100%;
        margin-top: 2px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    html.pv-redesign .pv-page-hero__trust li {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 7px 0;
        border-radius: 0;
        background: transparent;
        border: none;
        font-size: 13px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    html.pv-redesign .pv-page-hero__trust li:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    html.pv-redesign .pv-page-hero__trust i {
        flex-shrink: 0;
        width: 18px;
        text-align: center;
        font-size: 13px !important;
    }

    html.pv-redesign .pv-page-hero__bg-img {
        background-position: center 22%;
        transform: scale(1.05);
        will-change: transform;
    }

    html.pv-redesign .pv-page-hero__bg-overlay {
        background:
            linear-gradient(115deg, rgba(10, 15, 26, 0.78) 0%, rgba(30, 46, 85, 0.58) 42%, rgba(10, 15, 26, 0.68) 100%),
            linear-gradient(180deg, transparent 0%, rgba(10, 15, 26, 0.32) 100%);
    }

    html.pv-redesign .pv-page-hero__bg-grid {
        opacity: 0.38;
        bottom: -30%;
        height: 68%;
    }

    html.pv-redesign .pv-page-hero__bg-orb {
        opacity: 0.38;
        filter: blur(42px);
    }

    html.pv-redesign .pv-page-hero__bg-orb--1 {
        width: 220px;
        height: 220px;
        top: 6%;
        right: -2%;
    }

    html.pv-redesign .pv-page-hero__bg-orb--2 {
        width: 260px;
        height: 260px;
        bottom: 14%;
        left: auto;
        right: 6%;
    }

    html.pv-redesign .pv-page-hero__bg-orb--3 {
        width: 180px;
        height: 180px;
    }

    html.pv-redesign .pv-page-hero__bg-shine {
        opacity: 0.55;
    }
}

@media (max-width: 480px) {
    html.pv-redesign .pv-page-hero {
        padding: calc(var(--pv-header-h) + 12px) 0 44px;
    }

    html.pv-redesign .pv-page-hero__container {
        padding: 0 14px;
    }

    html.pv-redesign .pv-page-hero h1 {
        font-size: clamp(1.58rem, 8.2vw, 2rem) !important;
    }

    html.pv-redesign .pv-page-hero p {
        font-size: 0.9rem !important;
    }
}

html.pv-redesign .pv-page-hero--privacy .pv-page-hero__bg-img {
    background-image: url("../images/about-banner.webp");
    background-position: center 30%;
}

html.pv-redesign .pv-page-hero--privacy .pv-page-hero__content {
    max-width: 680px;
}

/* --- About intro (first section) --- */
html.pv-redesign .pv-about-intro {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--pv-surface) 55%, #f0f5fa 100%);
    overflow: hidden;
    isolation: isolate;
}

html.pv-redesign .pv-about-intro__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-about-intro__bg-grid {
    position: absolute;
    left: -16%;
    right: -16%;
    bottom: -46%;
    height: 72%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(900px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.5;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 74%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 74%, transparent 100%);
}

html.pv-redesign .pv-about-intro__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.45;
}

html.pv-redesign .pv-about-intro__bg-orb--1 {
    width: 280px;
    height: 280px;
    top: 10%;
    left: -4%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.2) 0%, transparent 70%);
}

html.pv-redesign .pv-about-intro__bg-orb--2 {
    width: 300px;
    height: 300px;
    bottom: 8%;
    right: -5%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.18) 0%, transparent 70%);
}

html.pv-redesign .pv-about-intro .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-about-intro .pv-section-head {
    margin-bottom: 56px;
}

html.pv-redesign .pv-about-intro__visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1200px;
    padding: 12px;
}

html.pv-redesign .pv-about-intro__visual-glow {
    position: absolute;
    inset: 8% 4%;
    background:
        radial-gradient(circle at 42% 40%, rgba(214, 77, 48, 0.14) 0%, transparent 55%),
        radial-gradient(circle at 68% 68%, rgba(5, 169, 128, 0.12) 0%, transparent 50%);
    filter: blur(24px);
    animation: pv-about-intro-glow 5s ease-in-out infinite;
}

@keyframes pv-about-intro-glow {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

html.pv-redesign .pv-about-intro__visual-ring {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 1px dashed rgba(30, 46, 85, 0.12);
    animation: pv-about-intro-ring 26s linear infinite;
}

@keyframes pv-about-intro-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

html.pv-redesign .pv-about-intro__accent {
    position: absolute;
    border-radius: 6px;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-about-intro__accent--gold {
    width: 44%;
    height: 10px;
    bottom: 10%;
    left: 8%;
    background: linear-gradient(90deg, var(--pv-gold), #f0c060);
    box-shadow: 0 6px 20px rgba(255, 203, 108, 0.3);
}

html.pv-redesign .pv-about-intro__accent--green {
    width: 54%;
    height: 14px;
    bottom: 6%;
    left: 5%;
    background: linear-gradient(90deg, var(--pv-green), var(--pv-teal));
    box-shadow: 0 8px 22px rgba(5, 169, 128, 0.22);
    z-index: -1;
}

html.pv-redesign .pv-about-intro__frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    border-radius: 0 28px 28px 88px;
    overflow: visible;
    padding: 4px;
    background: linear-gradient(145deg, rgba(214, 77, 48, 0.5), rgba(255, 203, 108, 0.4), rgba(5, 169, 128, 0.5));
    box-shadow:
        0 32px 70px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset;
    transform-style: preserve-3d;
    will-change: transform;
}

html.pv-redesign .pv-about-intro__frame-media {
    position: relative;
    border-radius: 0 24px 24px 84px;
    overflow: hidden;
}

html.pv-redesign .pv-about-intro__frame img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--pv-ease);
}

html.pv-redesign .pv-about-intro__frame-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.38) 50%, transparent 64%);
    transform: translateX(-130%);
    pointer-events: none;
    z-index: 2;
}

html.pv-redesign .pv-about-intro__frame::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 0 24px 24px 84px;
    pointer-events: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        inset 0 -40px 60px rgba(30, 46, 85, 0.08);
    z-index: 1;
}

html.pv-redesign .pv-about-intro__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pv-navy);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

html.pv-redesign .pv-about-intro__badge i {
    color: var(--pv-orange);
    font-size: 12px;
}

html.pv-redesign .pv-about-intro__content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--pv-muted);
    margin: 0 0 18px;
}

html.pv-redesign .pv-about-intro__points {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 12px;
}

html.pv-redesign .pv-about-intro__points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pv-navy);
    margin: 0 !important;
}

html.pv-redesign .pv-about-intro__points i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px !important;
    color: var(--pv-white) !important;
    background: linear-gradient(135deg, var(--pv-orange), var(--pv-green));
    flex-shrink: 0;
}

html.pv-redesign .pv-about-intro__content .pv-hero__btn-primary {
    margin-top: 4px;
}

@media (max-width: 991px) {
    html.pv-redesign .pv-about-intro {
        padding: 90px 0;
    }

    html.pv-redesign .pv-about-intro__visual {
        min-height: 0;
        margin-bottom: 12px;
    }

    html.pv-redesign .pv-about-intro__frame {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* --- About cities / coverage --- */
html.pv-redesign .pv-about-cities {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    isolation: isolate;
}

html.pv-redesign .pv-about-cities__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

html.pv-redesign .pv-about-cities__bg-photo {
    position: absolute;
    inset: 0;
    background: url("../images/sale-bg.webp") center right / cover no-repeat;
    transform: scale(1.04);
    will-change: transform;
}

html.pv-redesign .pv-about-cities__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8, 14, 24, 0.94) 0%, rgba(10, 20, 32, 0.88) 42%, rgba(8, 14, 24, 0.35) 72%, rgba(8, 14, 24, 0.15) 100%),
        linear-gradient(180deg, rgba(5, 169, 128, 0.08) 0%, transparent 40%, transparent 100%);
}

html.pv-redesign .pv-about-cities__bg-grid {
    position: absolute;
    left: -14%;
    right: -14%;
    bottom: -50%;
    height: 78%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 46px 46px;
    transform: perspective(860px) rotateX(74deg);
    transform-origin: center top;
    opacity: 0.4;
    mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 72%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 72%, transparent 100%);
}

html.pv-redesign .pv-about-cities__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.06) 48%, transparent 66%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-about-cities .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-about-cities__head {
    margin-bottom: 32px;
}

html.pv-redesign .pv-about-cities .pv-section-label {
    color: var(--pv-gold);
}

html.pv-redesign .pv-about-cities .pv-section-label::before {
    background: linear-gradient(90deg, var(--pv-gold), var(--pv-teal));
}

html.pv-redesign .pv-about-cities__title {
    margin: 0 0 16px;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--pv-white);
    max-width: 620px;
}

html.pv-redesign .pv-about-cities__title::after {
    display: none !important;
}

html.pv-redesign .pv-about-cities__desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
}

html.pv-redesign .pv-about-cities__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

html.pv-redesign .pv-about-cities__chip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.35s var(--pv-ease), background 0.35s var(--pv-ease), border-color 0.35s var(--pv-ease), box-shadow 0.35s var(--pv-ease);
}

html.pv-redesign .pv-about-cities__chip:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 203, 108, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

html.pv-redesign .pv-about-cities__chip i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 10px !important;
    color: var(--pv-navy) !important;
    background: linear-gradient(135deg, var(--pv-gold), #f0c060);
    flex-shrink: 0;
    margin: 0 !important;
}

html.pv-redesign .pv-about-cities__chip span {
    display: block !important;
    background: transparent !important;
    background-color: transparent !important;
    padding: 0 !important;
    width: auto !important;
    font-size: 14px !important;
    color: inherit !important;
}

html.pv-redesign .pv-about-cities__visual {
    position: relative;
    min-height: 320px;
    pointer-events: none;
}

html.pv-redesign .pv-about-cities__visual-glow {
    position: absolute;
    top: 18%;
    right: 8%;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.22) 0%, transparent 68%);
    filter: blur(28px);
    animation: pv-about-cities-glow 5s ease-in-out infinite;
}

@keyframes pv-about-cities-glow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

html.pv-redesign .pv-about-cities__visual-ring {
    position: absolute;
    top: 12%;
    right: 4%;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    animation: pv-about-cities-ring 24s linear infinite;
}

@keyframes pv-about-cities-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

html.pv-redesign .pv-about-cities__atm-label {
    position: absolute;
    top: 8%;
    right: 10%;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.14);
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.12);
    padding: 8px 20px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: pv-about-cities-atm 4s ease-in-out infinite;
}

@keyframes pv-about-cities-atm {
    0%, 100% { transform: translateY(0); opacity: 0.85; }
    50% { transform: translateY(-8px); opacity: 1; }
}

html.pv-redesign .pv-about-cities__badge {
    position: absolute;
    bottom: 16%;
    right: 6%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pv-white);
    background: rgba(10, 15, 26, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    animation: pv-about-cities-badge 3.5s ease-in-out infinite;
}

@keyframes pv-about-cities-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

html.pv-redesign .pv-about-cities__badge i {
    color: var(--pv-teal) !important;
    font-size: 12px !important;
}

@media (max-width: 991px) {
    html.pv-redesign .pv-about-cities {
        padding: 90px 0;
    }

    html.pv-redesign .pv-about-cities__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    html.pv-redesign .pv-about-cities__visual {
        display: none;
    }

    html.pv-redesign .pv-about-cities__bg-photo {
        background-position: center center;
    }

    html.pv-redesign .pv-about-cities__bg-overlay {
        background: linear-gradient(180deg, rgba(8, 14, 24, 0.92) 0%, rgba(8, 14, 24, 0.88) 100%);
    }
}

@media (max-width: 575px) {
    html.pv-redesign .pv-about-cities__grid {
        grid-template-columns: 1fr;
    }
}

/* --- About page CTA (yellow) --- */
html.pv-redesign .pv-about-cta {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
    isolation: isolate;
}

html.pv-redesign .pv-about-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

html.pv-redesign .pv-about-cta__bg-photo {
    position: absolute;
    inset: 0;
    background: url("../images/about-cta.webp") center / cover no-repeat;
    transform: scale(1.03);
    will-change: transform;
}

html.pv-redesign .pv-about-cta__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.08) 100%),
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 203, 108, 0.12) 0%, transparent 70%);
}

html.pv-redesign .pv-about-cta__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.18) 48%, transparent 64%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-about-cta .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-about-cta__inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

html.pv-redesign .pv-about-cta__eyebrow {
    margin: 0 0 12px;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

html.pv-redesign .pv-about-cta__title {
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

html.pv-redesign .pv-about-cta__title::after {
    display: none !important;
}

html.pv-redesign .pv-about-cta__title-line {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pv-white);
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

html.pv-redesign .pv-about-cta__ribbon {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding: 2px;
}

html.pv-redesign .pv-about-cta__ribbon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(214, 77, 48, 0.5), rgba(5, 169, 128, 0.4));
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    border-radius: 4px;
    filter: blur(0);
}

html.pv-redesign .pv-about-cta__ribbon-text {
    position: relative;
    display: inline-block;
    padding: 14px 36px;
    font-size: clamp(1.1rem, 2.4vw, 1.65rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--pv-white);
    background: linear-gradient(135deg, #0a0f1a 0%, #151d2e 100%);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html.pv-redesign .pv-about-cta__ribbon-text strong {
    color: var(--pv-gold);
    font-size: inherit;
    font-weight: 900;
}

html.pv-redesign .pv-about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 28px;
}

html.pv-redesign .pv-about-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    padding: 10px 18px 10px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s var(--pv-ease), background 0.35s var(--pv-ease), box-shadow 0.35s var(--pv-ease);
}

html.pv-redesign .pv-about-cta__phone:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

html.pv-redesign .pv-about-cta__phone-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    animation: pv-about-cta-phone 3s ease-in-out infinite;
}

@keyframes pv-about-cta-phone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

html.pv-redesign .pv-about-cta__phone-icon img {
    width: 34px;
    height: auto;
    display: block;
}

html.pv-redesign .pv-about-cta__phone-num {
    font-size: clamp(1.35rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--pv-white) !important;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    margin: 0 !important;
}

html.pv-redesign .pv-about-cta__btn {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    html.pv-redesign .pv-about-cta {
        padding: 56px 0;
    }

    html.pv-redesign .pv-about-cta__actions {
        flex-direction: column;
        gap: 16px;
    }

    html.pv-redesign .pv-about-cta__phone,
    html.pv-redesign .pv-about-cta__btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    html.pv-redesign .pv-about-cta__ribbon-text {
        padding: 12px 22px;
        font-size: 0.95rem;
    }
}

/* --- About world / mission --- */
html.pv-redesign .pv-about-world {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--pv-surface) 50%, #f8fafc 100%);
    overflow: hidden;
    isolation: isolate;
}

html.pv-redesign .pv-about-world__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-about-world__bg-circles {
    position: absolute;
    top: -8%;
    right: -6%;
    width: min(52%, 620px);
    height: min(70%, 620px);
    background: url("../images/circle.webp") no-repeat right top / contain;
    opacity: 0.35;
    transform: rotate(90deg);
    animation: pv-about-world-circles 20s linear infinite;
}

@keyframes pv-about-world-circles {
    from { transform: rotate(90deg); }
    to { transform: rotate(450deg); }
}

html.pv-redesign .pv-about-world__bg-grid {
    position: absolute;
    left: -14%;
    right: -14%;
    bottom: -44%;
    height: 70%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(900px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.45;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 74%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 74%, transparent 100%);
}

html.pv-redesign .pv-about-world__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.4;
}

html.pv-redesign .pv-about-world__bg-orb--1 {
    width: 260px;
    height: 260px;
    top: 14%;
    left: -2%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.18) 0%, transparent 70%);
}

html.pv-redesign .pv-about-world__bg-orb--2 {
    width: 280px;
    height: 280px;
    bottom: 10%;
    right: 20%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.16) 0%, transparent 70%);
}

html.pv-redesign .pv-about-world .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-about-world .pv-section-head {
    margin-bottom: 56px;
}

html.pv-redesign .pv-about-world__visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1200px;
    padding: 16px;
}

html.pv-redesign .pv-about-world__visual-glow {
    position: absolute;
    inset: 10% 5%;
    background:
        radial-gradient(circle at 45% 42%, rgba(214, 77, 48, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 65% 68%, rgba(5, 169, 128, 0.1) 0%, transparent 50%);
    filter: blur(24px);
    animation: pv-about-world-glow 5s ease-in-out infinite;
}

@keyframes pv-about-world-glow {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

html.pv-redesign .pv-about-world__visual-ring {
    position: absolute;
    width: 88%;
    height: 88%;
    border-radius: 50%;
    border: 1px dashed rgba(30, 46, 85, 0.1);
    animation: pv-about-world-ring 28s linear infinite;
}

@keyframes pv-about-world-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

html.pv-redesign .pv-about-world__frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    padding: 4px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(214, 77, 48, 0.45), rgba(255, 203, 108, 0.35), rgba(5, 169, 128, 0.45));
    box-shadow:
        0 28px 60px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transform-style: preserve-3d;
    will-change: transform;
}

html.pv-redesign .pv-about-world__frame-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

html.pv-redesign .pv-about-world__frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.8s var(--pv-ease);
}

html.pv-redesign .pv-about-world__frame-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.45) 50%, transparent 64%);
    transform: translateX(-130%);
    pointer-events: none;
    z-index: 2;
}

html.pv-redesign .pv-about-world__badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pv-navy);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

html.pv-redesign .pv-about-world__badge i {
    color: var(--pv-orange);
    font-size: 12px;
}

html.pv-redesign .pv-about-world__content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--pv-muted);
    margin: 0 0 18px;
}

html.pv-redesign .pv-about-world__features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

html.pv-redesign .pv-about-world__features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0 !important;
    padding: 18px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(30, 46, 85, 0.07);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.35s var(--pv-ease), box-shadow 0.35s var(--pv-ease), border-color 0.35s var(--pv-ease);
}

html.pv-redesign .pv-about-world__features li:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 77, 48, 0.14);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

html.pv-redesign .pv-about-world__feature-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(214, 77, 48, 0.12), rgba(5, 169, 128, 0.1));
    border: 1px solid rgba(30, 46, 85, 0.06);
}

html.pv-redesign .pv-about-world__feature-icon i {
    font-size: 18px !important;
    color: var(--pv-navy) !important;
    margin: 0 !important;
}

html.pv-redesign .pv-about-world__feature-text {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    background: transparent !important;
    padding: 0 !important;
    width: auto !important;
}

html.pv-redesign .pv-about-world__feature-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--pv-navy);
    line-height: 1.3;
}

html.pv-redesign .pv-about-world__feature-text small {
    font-size: 12px;
    color: var(--pv-muted);
    line-height: 1.45;
    font-weight: 500;
}

@media (max-width: 991px) {
    html.pv-redesign .pv-about-world {
        padding: 90px 0;
    }

    html.pv-redesign .pv-about-world__visual {
        min-height: 0;
        margin-top: 8px;
    }

    html.pv-redesign .pv-about-world__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    html.pv-redesign .pv-about-world__bg-circles {
        opacity: 0.2;
        width: 80%;
        right: -20%;
    }
}

/* --- Features page ? Key Features grid --- */
html.pv-redesign .pv-key-features.key-feature {
    display: block !important;
    float: none;
    width: 100%;
    position: relative;
    padding: clamp(72px, 8vw, 110px) 0 clamp(80px, 9vw, 120px);
    background: linear-gradient(180deg, #ffffff 0%, var(--pv-surface) 48%, #f8fafc 100%);
    overflow: hidden;
    isolation: isolate;
}

html.pv-redesign .pv-key-features.key-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 55% at 50% 100%, rgba(30, 46, 85, 0.05) 0%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-key-features__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

html.pv-redesign .pv-key-features__bg-scene {
    position: absolute;
    inset: -8% -4%;
    perspective: 1400px;
    transform-style: preserve-3d;
    will-change: transform;
}

html.pv-redesign .pv-key-features__bg-ambient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 48% 42% at 12% 18%, rgba(214, 77, 48, 0.1) 0%, transparent 68%),
        radial-gradient(ellipse 44% 40% at 88% 72%, rgba(5, 169, 128, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 36% 32% at 50% 0%, rgba(255, 203, 108, 0.08) 0%, transparent 65%);
    animation: pv-key-features-ambient 11s ease-in-out infinite;
}

@keyframes pv-key-features-ambient {
    0%, 100% { opacity: 0.82; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

html.pv-redesign .pv-key-features__bg-grid {
    position: absolute;
    left: -18%;
    right: -18%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.055) 1px, transparent 1px);
    will-change: transform, background-position;
}

html.pv-redesign .pv-key-features__bg-grid--floor {
    bottom: -48%;
    height: 82%;
    background-size: 52px 52px;
    background-position: 0 0;
    transform: perspective(920px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.72;
    mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 78%, transparent 100%);
}

html.pv-redesign .pv-key-features__bg-grid--depth {
    top: -18%;
    height: 58%;
    background-size: 64px 64px;
    background-position: 0 0;
    transform: perspective(1100px) rotateX(-62deg) translateZ(-120px);
    transform-origin: center bottom;
    opacity: 0.22;
    mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 88%, transparent 100%);
}

html.pv-redesign .pv-key-features__bg-beam {
    position: absolute;
    top: -20%;
    left: 18%;
    width: 2px;
    height: 140%;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 169, 128, 0.45) 42%, rgba(214, 77, 48, 0.35) 58%, transparent 100%);
    transform: rotate(24deg);
    transform-origin: center center;
    filter: blur(1px);
    opacity: 0.55;
    box-shadow: 0 0 28px rgba(5, 169, 128, 0.2);
}

html.pv-redesign .pv-key-features__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.07) 48%, transparent 68%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-key-features__bg-particles {
    position: absolute;
    inset: 0;
}

html.pv-redesign .pv-key-features__bg-particles span {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(5, 169, 128, 0.55);
    box-shadow: 0 0 12px rgba(5, 169, 128, 0.35);
}

html.pv-redesign .pv-key-features__bg-particles span:nth-child(1) { top: 18%; left: 14%; }
html.pv-redesign .pv-key-features__bg-particles span:nth-child(2) { top: 32%; left: 78%; background: rgba(214, 77, 48, 0.5); box-shadow: 0 0 12px rgba(214, 77, 48, 0.3); }
html.pv-redesign .pv-key-features__bg-particles span:nth-child(3) { top: 58%; left: 22%; width: 4px; height: 4px; }
html.pv-redesign .pv-key-features__bg-particles span:nth-child(4) { top: 72%; left: 66%; background: rgba(255, 203, 108, 0.65); box-shadow: 0 0 10px rgba(255, 203, 108, 0.35); }
html.pv-redesign .pv-key-features__bg-particles span:nth-child(5) { top: 44%; left: 48%; width: 3px; height: 3px; opacity: 0.7; }
html.pv-redesign .pv-key-features__bg-particles span:nth-child(6) { top: 84%; left: 38%; }

html.pv-redesign .pv-key-features__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.42;
    will-change: transform;
}

html.pv-redesign .pv-key-features__bg-orb--1 {
    width: 320px;
    height: 320px;
    top: 4%;
    right: -2%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.2) 0%, transparent 70%);
}

html.pv-redesign .pv-key-features__bg-orb--2 {
    width: 300px;
    height: 300px;
    bottom: 6%;
    left: -1%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.18) 0%, transparent 70%);
}

html.pv-redesign .pv-key-features__bg-orb--3 {
    width: 240px;
    height: 240px;
    top: 46%;
    left: 42%;
    background: radial-gradient(circle, rgba(255, 203, 108, 0.22) 0%, transparent 70%);
}

html.pv-redesign .pv-key-features .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-key-features .pv-section-head {
    margin-bottom: clamp(40px, 5vw, 56px);
}

html.pv-redesign .pv-key-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(15, 23, 42, 0.04);
}

html.pv-redesign .pv-key-feature-card {
    position: relative;
    min-height: clamp(280px, 28vw, 340px);
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform;
}

html.pv-redesign .pv-key-feature-card__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

html.pv-redesign .pv-key-feature-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

html.pv-redesign .pv-key-feature-card:hover .pv-key-feature-card__media img,
html.pv-redesign .pv-key-feature-card.is-active .pv-key-feature-card__media img {
    transform: scale(1.1);
}

html.pv-redesign .pv-key-feature-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(165deg, rgba(15, 23, 42, 0.22) 0%, transparent 42%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.62) 58%, rgba(15, 23, 42, 0.92) 100%);
    transition: opacity 0.45s ease, background 0.45s ease;
}

html.pv-redesign .pv-key-feature-card:hover .pv-key-feature-card__overlay,
html.pv-redesign .pv-key-feature-card.is-active .pv-key-feature-card__overlay {
    background:
        linear-gradient(165deg, rgba(15, 23, 42, 0.12) 0%, transparent 42%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.5) 58%, rgba(15, 23, 42, 0.86) 100%);
}

html.pv-redesign .pv-key-feature-card__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.22) 48%, transparent 100%);
    transform: skewX(-16deg);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

html.pv-redesign .pv-key-feature-card:hover .pv-key-feature-card__shine,
html.pv-redesign .pv-key-feature-card.is-active .pv-key-feature-card__shine {
    opacity: 1;
}

html.pv-redesign .pv-key-feature-card__content {
    position: absolute;
    inset: 0;
    padding: clamp(22px, 2.4vw, 32px) clamp(24px, 2.6vw, 36px) clamp(28px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

html.pv-redesign .pv-key-feature-card__icon {
    position: absolute;
    top: clamp(18px, 2vw, 26px);
    right: clamp(20px, 2.2vw, 30px);
    width: clamp(48px, 4.5vw, 58px);
    height: clamp(48px, 4.5vw, 58px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease, border-color 0.35s ease;
}

html.pv-redesign .pv-key-feature-card__icon img {
    width: clamp(28px, 2.6vw, 36px);
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

html.pv-redesign .pv-key-feature-card:hover .pv-key-feature-card__icon,
html.pv-redesign .pv-key-feature-card.is-active .pv-key-feature-card__icon {
    transform: translateY(-4px) scale(1.06);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.36);
}

html.pv-redesign .pv-key-feature-card:hover .pv-key-feature-card__icon img,
html.pv-redesign .pv-key-feature-card.is-active .pv-key-feature-card__icon img {
    transform: scale(1.08);
}

html.pv-redesign .pv-key-feature-card__content h4 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    transform: translateY(0);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

html.pv-redesign .pv-key-feature-card:hover .pv-key-feature-card__content h4,
html.pv-redesign .pv-key-feature-card.is-active .pv-key-feature-card__content h4 {
    transform: translateY(-2px);
}

html.pv-redesign .pv-key-feature-card__content p {
    margin: 0;
    max-width: 88%;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(13px, 1.05vw, 15px);
    line-height: 1.65;
    transform: translateY(4px);
    opacity: 0.92;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

html.pv-redesign .pv-key-feature-card:hover .pv-key-feature-card__content p,
html.pv-redesign .pv-key-feature-card.is-active .pv-key-feature-card__content p {
    transform: translateY(0);
    opacity: 1;
}

html.pv-redesign .pv-key-features__cta {
    display: flex;
    justify-content: center;
    margin-top: clamp(36px, 4.5vw, 52px);
}

@media (max-width: 1199px) {
    html.pv-redesign .pv-key-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 22px;
    }
}

@media (max-width: 991px) {
    html.pv-redesign .pv-key-features__bg-grid--depth,
    html.pv-redesign .pv-key-features__bg-beam {
        opacity: 0.35;
    }

    html.pv-redesign .pv-key-features__bg-particles span {
        opacity: 0.45;
    }
}

/* --- Features page ? Zigzag payments --- */
html.pv-redesign .pv-zigzag.accept {
    position: relative;
    padding: clamp(80px, 9vw, 120px) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 35%, var(--pv-surface) 100%);
    overflow: hidden;
    isolation: isolate;
}

html.pv-redesign .pv-zigzag__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-zigzag__bg-grid {
    position: absolute;
    left: -14%;
    right: -14%;
    bottom: -44%;
    height: 70%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(900px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.5;
    mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 78%, transparent 100%);
}

html.pv-redesign .pv-zigzag__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.42;
}

html.pv-redesign .pv-zigzag__bg-orb--1 {
    width: 280px;
    height: 280px;
    top: 12%;
    right: -3%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.16) 0%, transparent 70%);
}

html.pv-redesign .pv-zigzag__bg-orb--2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -4%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.15) 0%, transparent 70%);
}

html.pv-redesign .pv-zigzag__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.06) 48%, transparent 66%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-zigzag .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-zigzag__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
    margin-bottom: clamp(72px, 8vw, 110px);
}

html.pv-redesign .pv-zigzag__row:last-child {
    margin-bottom: 0;
}

html.pv-redesign .pv-zigzag__content .pv-section-label {
    margin-bottom: 14px;
}

html.pv-redesign .pv-zigzag__title {
    margin: 0 0 18px;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--pv-navy);
}

html.pv-redesign .pv-zigzag__content p {
    margin: 0 0 24px;
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.75;
    color: var(--pv-text-muted);
    max-width: 520px;
}

html.pv-redesign .pv-zigzag__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

html.pv-redesign .pv-zigzag__chips li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    font-size: 13px;
    font-weight: 600;
    color: var(--pv-navy);
    width: auto;
    margin: 0;
}

html.pv-redesign .pv-zigzag__chips i {
    color: var(--pv-green);
    font-size: 14px;
}

html.pv-redesign .pv-zigzag__points {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

html.pv-redesign .pv-zigzag__points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--pv-navy);
    width: auto;
    margin: 0;
}

html.pv-redesign .pv-zigzag__points i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pv-green), var(--pv-teal));
    color: #fff;
    font-size: 10px;
    flex-shrink: 0;
}

html.pv-redesign .pv-zigzag__visual {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1200px;
    padding: 16px;
}

html.pv-redesign .pv-zigzag__visual-glow {
    position: absolute;
    inset: 8% 4%;
    background:
        radial-gradient(circle at 42% 40%, rgba(214, 77, 48, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 68% 68%, rgba(5, 169, 128, 0.1) 0%, transparent 50%);
    filter: blur(24px);
    animation: pv-zigzag-glow 5s ease-in-out infinite;
}

@keyframes pv-zigzag-glow {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

html.pv-redesign .pv-zigzag__visual-ring {
    position: absolute;
    width: 88%;
    height: 88%;
    border-radius: 50%;
    border: 1px dashed rgba(30, 46, 85, 0.1);
    animation: pv-zigzag-ring 24s linear infinite;
}

@keyframes pv-zigzag-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

html.pv-redesign .pv-zigzag__accent {
    position: absolute;
    border-radius: 8px;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-zigzag__accent--green {
    width: 48%;
    height: 16px;
    bottom: 8%;
    left: 6%;
    background: linear-gradient(90deg, var(--pv-green), var(--pv-teal));
    box-shadow: 0 8px 24px rgba(5, 169, 128, 0.25);
}

html.pv-redesign .pv-zigzag__accent--gold {
    width: 42%;
    height: 12px;
    bottom: 10%;
    right: 8%;
    background: linear-gradient(90deg, var(--pv-gold), #f0c060);
    box-shadow: 0 6px 20px rgba(255, 203, 108, 0.28);
}

html.pv-redesign .pv-zigzag__frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    border-radius: 0 28px 28px 88px;
    overflow: visible;
    padding: 4px;
    background: linear-gradient(145deg, rgba(214, 77, 48, 0.45), rgba(255, 203, 108, 0.35), rgba(5, 169, 128, 0.45));
    box-shadow:
        0 28px 64px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset;
    transform-style: preserve-3d;
    will-change: transform;
}

html.pv-redesign .pv-zigzag__frame--mirror {
    border-radius: 88px 28px 28px 0;
}

html.pv-redesign .pv-zigzag__frame-media {
    position: relative;
    border-radius: 0 24px 24px 84px;
    overflow: hidden;
}

html.pv-redesign .pv-zigzag__frame--mirror .pv-zigzag__frame-media {
    border-radius: 84px 24px 24px 0;
}

html.pv-redesign .pv-zigzag__frame img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    transform: scale(1.02);
}

html.pv-redesign .pv-zigzag__frame-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.22) 48%, transparent 100%);
    transform: translateX(-130%);
}

html.pv-redesign .pv-zigzag__frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
    pointer-events: none;
}

html.pv-redesign .pv-zigzag__badge {
    position: absolute;
    bottom: -14px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
    font-size: 13px;
    font-weight: 700;
    color: var(--pv-navy);
    z-index: 2;
}

html.pv-redesign .pv-zigzag__badge i {
    color: var(--pv-orange);
    font-size: 14px;
}

html.pv-redesign .pv-zigzag__row--flip .pv-zigzag__badge {
    right: auto;
    left: 24px;
}

html.pv-redesign .pv-zigzag__row--flip .pv-zigzag__content {
    order: 2;
}

html.pv-redesign .pv-zigzag__row--flip .pv-zigzag__visual {
    order: 1;
}

@media (max-width: 991px) {
    html.pv-redesign .pv-zigzag__row,
    html.pv-redesign .pv-zigzag__row--flip {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    html.pv-redesign .pv-zigzag__row--flip .pv-zigzag__content {
        order: 1;
    }

    html.pv-redesign .pv-zigzag__row--flip .pv-zigzag__visual {
        order: 2;
    }

    html.pv-redesign .pv-zigzag__visual {
        min-height: 0;
    }

    html.pv-redesign .pv-zigzag__content p {
        max-width: none;
    }
}

/* Legacy inner banners (other pages) */
html.pv-redesign .our-banner {
    margin-top: 0 !important;
    padding-top: 180px !important;
    padding-bottom: 80px !important;
    min-height: 420px;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
}

html.pv-redesign .our-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 15, 26, 0.88), rgba(30, 46, 85, 0.75));
}

html.pv-redesign .our-banner .container {
    position: relative;
    z-index: 2;
}

html.pv-redesign .our-banner h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    letter-spacing: -0.03em;
    line-height: 1.1 !important;
}

html.pv-redesign .our-banner h1::after {
    display: none !important;
}

html.pv-redesign .our-banner p {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    opacity: 0.85;
    max-width: 600px;
}

html.pv-redesign section {
    padding: 90px 0;
}

html.pv-redesign h2::after {
    display: none;
}

html.pv-redesign h2 {
    padding-bottom: 0 !important;
}

/* --- GSAP: no CSS hide (prevents blank sections) --- */
html.pv-redesign .pv-animate {
    will-change: transform, opacity;
}

html.pv-redesign .pv-animate.pv-visible {
    opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    html.pv-redesign .pv-hero {
        padding: 130px 0 90px;
        min-height: auto;
    }

    html.pv-redesign .pv-hero__bg-img {
        object-position: center center;
    }

    html.pv-redesign .pv-hero__bg-vignette {
        background:
            linear-gradient(180deg, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.88) 50%, rgba(10, 15, 26, 0.95) 100%);
    }

    html.pv-redesign .pv-hero__layout {
        min-height: auto;
    }

    html.pv-redesign .pv-features {
        background-attachment: scroll;
    }

    html.pv-redesign .pv-hero__figure-wrap {
        max-width: min(340px, 88vw);
        width: min(100%, 340px);
        margin: 0 auto;
        position: relative;
        aspect-ratio: 1 / 1;
        flex-shrink: 0;
    }

    html.pv-redesign .pv-hero__figure-reveal {
        position: relative;
        inset: auto;
        width: 100%;
        height: 100%;
        clip-path: none !important;
        -webkit-clip-path: none !important;
        transform: none !important;
    }

    html.pv-redesign .pv-hero__figure-3d {
        transform: none !important;
    }

    html.pv-redesign .pv-hero__figure {
        filter: none !important;
        transform: none !important;
    }

    html.pv-redesign .pv-hero__showcase-glow {
        top: 50%;
        right: auto;
        left: 50%;
        width: min(320px, 85vw);
        transform: translate(-50%, -50%);
    }

    html.pv-redesign .pv-hero__showcase {
        min-height: auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 12px 8px 48px;
        justify-content: center;
    }

    html.pv-redesign .pv-hero__metric--growth {
        top: 4%;
        right: 0;
        left: auto;
        animation-delay: 0s;
        max-width: calc(100% - 12px);
    }

    html.pv-redesign .pv-hero__metric--secure {
        bottom: 32%;
        right: 0;
        left: auto;
        animation-delay: 1.2s;
        max-width: calc(100% - 12px);
    }

    html.pv-redesign .pv-hero__metric--payment {
        bottom: 4%;
        left: 0;
        right: auto;
        max-width: calc(100% - 12px);
    }

    html.pv-redesign .pv-hero__scroll {
        display: none;
    }

    html.pv-redesign .pv-hero__features {
        gap: 8px;
    }

    html.pv-redesign .pv-stats {
        --pv-stats-overlap: 48px;
        --pv-stats-pull: 320px;
        --pv-stats-gap: 40px;
        --pv-stats-bridge: 20px;
        margin-top: calc(-1 * var(--pv-stats-overlap));
    }

    html.pv-redesign .pv-why {
        margin-top: calc(-1 * var(--pv-stats-pull));
        padding-top: calc(var(--pv-stats-gap) + var(--pv-stats-pull));
    }

    html.pv-redesign .pv-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 28px 20px 24px;
        gap: 8px 12px;
    }

    html.pv-redesign .pv-stats__item {
        padding: 12px 8px;
    }

    html.pv-redesign .pv-stats__icon,
    html.pv-redesign .pv-stats__icon-img {
        width: 76px;
        height: 76px;
    }

    html.pv-redesign .pv-stats__icon {
        margin-bottom: 14px;
    }

    html.pv-redesign .pv-stats__item:nth-child(2)::after {
        display: none;
    }

    html.pv-redesign .pv-bento {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    html.pv-redesign .pv-bento__main {
        grid-row: auto;
        min-height: 360px;
    }

    html.pv-redesign .pv-bento__main-inner {
        min-height: 358px;
    }

    html.pv-redesign .pv-bento__card {
        min-height: 0;
    }

    html.pv-redesign .pv-bento__overlay {
        padding: 22px;
    }

    html.pv-redesign .pv-bento__overlay p {
        max-width: 100%;
    }

    html.pv-redesign .pv-features__grid {
        grid-template-columns: 1fr;
    }

    html.pv-redesign .pv-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    html.pv-redesign .pv-benefits__showcase {
        height: auto !important;
        min-height: 0;
        margin-top: 24px;
        padding: 10px 0;
    }

    html.pv-redesign .pv-benefits__frame {
        height: auto;
        width: 100%;
        max-width: 420px;
        aspect-ratio: 4 / 5;
        margin: 0 auto;
    }

    html.pv-redesign .pv-cta-band {
        padding: clamp(56px, 10vw, 80px) 0;
    }

    html.pv-redesign .pv-cta-band::before {
        opacity: 0.22;
        background-position: center;
        background-size: cover;
    }

    html.pv-redesign .pv-cta-band__orb--1 {
        width: 240px;
        height: 240px;
        top: -8%;
        left: -18%;
    }

    html.pv-redesign .pv-cta-band__orb--2 {
        width: 200px;
        height: 200px;
        bottom: -10%;
        right: -14%;
    }

    html.pv-redesign .pv-cta-band__orb--3 {
        width: 160px;
        height: 160px;
        right: 8%;
    }

    html.pv-redesign .pv-cta-band__inner {
        max-width: 100%;
        padding: clamp(28px, 5vw, 36px) clamp(18px, 4vw, 24px) clamp(24px, 4vw, 32px);
        border-radius: 18px;
    }

    html.pv-redesign .pv-cta-band__title {
        font-size: clamp(1.45rem, 5.5vw, 2rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
        max-width: none;
    }

    html.pv-redesign .pv-cta-band__desc {
        font-size: clamp(0.92rem, 2.8vw, 1rem) !important;
        line-height: 1.65 !important;
        max-width: none;
        padding: 0 4px;
    }

    html.pv-redesign .pv-cta-band__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 28px;
    }

    html.pv-redesign .pv-cta-band__phone {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 16px 12px 12px;
        border-radius: 16px;
    }

    html.pv-redesign .pv-cta-band__phone-icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
        flex-shrink: 0;
    }

    html.pv-redesign .pv-cta-band__phone-copy {
        text-align: left;
        flex: 1;
        min-width: 0;
    }

    html.pv-redesign .pv-cta-band__phone-copy strong {
        font-size: clamp(1.1rem, 4.5vw, 1.35rem);
        word-break: break-word;
    }

    html.pv-redesign .pv-cta-band__btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
        font-size: 14px;
        border-radius: 100px;
    }

    html.pv-redesign .pv-cta-band__trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 22px;
    }

    html.pv-redesign .pv-cta-band__trust li {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 13px;
    }
}

@media (min-width: 992px) and (max-width: 1100px) {
    html.pv-redesign header.pv-header nav ul.menu {
        gap: 0 14px;
    }

    html.pv-redesign header.pv-header nav ul.menu > li > a,
    html.pv-redesign header.pv-header nav ul.menu > li > .nav-link {
        font-size: 12px;
    }

    html.pv-redesign header.pv-header .pv-header__logo img {
        width: 148px;
    }

    html.pv-redesign header.pv-header .pv-header__cta {
        padding: 9px 16px;
        min-width: 112px;
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    html.pv-redesign .pv-benefits__grid {
        grid-template-columns: 1fr;
    }

    html.pv-redesign .pv-stats {
        --pv-stats-pull: 540px;
        --pv-stats-gap: 28px;
        --pv-stats-bridge: 16px;
    }

    html.pv-redesign .pv-why {
        margin-top: calc(-1 * var(--pv-stats-pull));
        padding-top: calc(var(--pv-stats-gap) + var(--pv-stats-pull));
    }

    html.pv-redesign .pv-stats__grid {
        grid-template-columns: 1fr;
    }

    html.pv-redesign .pv-stats__item::after {
        display: none !important;
    }

    html.pv-redesign .pv-benefits__grid {
        grid-template-columns: 1fr;
    }

    html.pv-redesign .pv-hero__actions {
        flex-direction: column;
    }

    html.pv-redesign .pv-hero__actions .pv-btn {
        width: 100%;
    }

    html.pv-redesign .pv-key-features__grid {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    html.pv-redesign .pv-key-feature-card {
        min-height: 280px;
    }

    html.pv-redesign .pv-key-feature-card__content {
        padding: 22px 20px 28px;
    }

    html.pv-redesign .pv-key-feature-card__content p {
        max-width: 100%;
        font-size: 14px;
    }
}

/* --- Referral ? Partnership models --- */
html.pv-redesign .pv-referral-partnership.our-business {
    position: relative;
    z-index: 3;
    padding: clamp(80px, 9vw, 120px) 0 clamp(48px, 5vw, 64px);
    margin-bottom: 0;
    background: transparent;
    overflow: visible;
}

html.pv-redesign .pv-referral-partnership.our-business::before,
html.pv-redesign .pv-referral-partnership.our-business::after {
    display: none !important;
}

html.pv-redesign .pv-referral-partnership__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

html.pv-redesign .pv-referral-partnership__bg-surface {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fa 55%, #f0f4f8 100%);
}

html.pv-redesign .pv-referral-partnership__bg-circles {
    position: absolute;
    top: -6%;
    left: -8%;
    width: min(52%, 646px);
    height: min(72%, 625px);
    background: url("../images/circle.webp") no-repeat left top / contain;
    opacity: 0.42;
    transform: rotate(0deg);
    animation: pv-referral-circles 22s linear infinite;
}

@keyframes pv-referral-circles {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

html.pv-redesign .pv-referral-partnership__bg-grid {
    position: absolute;
    left: -14%;
    right: -14%;
    bottom: -42%;
    height: 68%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(900px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.45;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

html.pv-redesign .pv-referral-partnership__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.38;
    will-change: transform;
}

html.pv-redesign .pv-referral-partnership__bg-orb--1 {
    width: 280px;
    height: 280px;
    top: 14%;
    right: 4%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.16) 0%, transparent 70%);
}

html.pv-redesign .pv-referral-partnership__bg-orb--2 {
    width: 300px;
    height: 300px;
    bottom: 18%;
    left: 38%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.14) 0%, transparent 70%);
}

html.pv-redesign .pv-referral-partnership__bg-orb--3 {
    width: 220px;
    height: 220px;
    top: 42%;
    right: 28%;
    background: radial-gradient(circle, rgba(255, 203, 108, 0.2) 0%, transparent 70%);
}

html.pv-redesign .pv-referral-partnership__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 48%, transparent 66%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-referral-partnership .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-referral-partnership .pv-section-head {
    margin-bottom: clamp(40px, 5vw, 56px);
}

html.pv-redesign .pv-referral-partnership__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 2.5vw, 28px);
    position: relative;
    z-index: 4;
    margin-bottom: -72px;
}

html.pv-redesign .pv-partner-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 220px;
    padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 48px);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 80px 40px 40px 40px;
    box-shadow:
        0 24px 56px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(30, 46, 85, 0.04);
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

html.pv-redesign .pv-partner-card--iso {
    border-radius: 40px 80px 40px 40px;
}

html.pv-redesign .pv-partner-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 32px 70px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(5, 169, 128, 0.08);
}

html.pv-redesign .pv-partner-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(5, 169, 128, 0.1) 0%, transparent 55%);
    opacity: 0.8;
    animation: pv-partner-card-glow 5s ease-in-out infinite;
    pointer-events: none;
}

html.pv-redesign .pv-partner-card--iso .pv-partner-card__glow {
    background: radial-gradient(circle at 15% 20%, rgba(214, 77, 48, 0.1) 0%, transparent 55%);
}

@keyframes pv-partner-card-glow {
    0%, 100% { opacity: 0.65; }
    50% { opacity: 1; }
}

html.pv-redesign .pv-partner-card__accent {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-partner-card__accent--green {
    width: 200px;
    height: 200px;
    right: -50px;
    top: -50px;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.35) 0%, rgba(5, 169, 128, 0.12) 45%, transparent 70%);
}

html.pv-redesign .pv-partner-card__accent--orange {
    width: 110px;
    height: 110px;
    left: -20px;
    top: -40px;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.45) 0%, rgba(214, 77, 48, 0.15) 50%, transparent 72%);
}

html.pv-redesign .pv-partner-card__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.45) 48%, transparent 100%);
    transform: skewX(-14deg);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

html.pv-redesign .pv-partner-card:hover .pv-partner-card__shine,
html.pv-redesign .pv-partner-card.is-active .pv-partner-card__shine {
    opacity: 1;
}

html.pv-redesign .pv-partner-card__body {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-partner-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(5, 169, 128, 0.1);
    border: 1px solid rgba(5, 169, 128, 0.16);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pv-green);
}

html.pv-redesign .pv-partner-card--iso .pv-partner-card__tag {
    background: rgba(214, 77, 48, 0.1);
    border-color: rgba(214, 77, 48, 0.16);
    color: var(--pv-orange);
}

html.pv-redesign .pv-partner-card__body h3 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--pv-navy);
    line-height: 1.2;
}

html.pv-redesign .pv-partner-card__body p {
    margin: 0 0 16px;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.65;
    color: var(--pv-text-muted);
    max-width: 340px;
}

html.pv-redesign .pv-partner-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pv-navy);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

html.pv-redesign .pv-partner-card__link:hover {
    gap: 12px;
    color: var(--pv-green);
}

html.pv-redesign .pv-partner-card--iso .pv-partner-card__link:hover {
    color: var(--pv-orange);
}

html.pv-redesign .pv-partner-card__visual {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: clamp(88px, 10vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

html.pv-redesign .pv-partner-card__visual img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.12));
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

html.pv-redesign .pv-partner-card:hover .pv-partner-card__visual img {
    transform: translateY(-6px) scale(1.06);
}

@media (max-width: 991px) {
    html.pv-redesign .pv-referral-partnership__grid {
        grid-template-columns: 1fr;
        margin-bottom: -48px;
    }

    html.pv-redesign .pv-partner-card,
    html.pv-redesign .pv-partner-card--iso {
        border-radius: 28px;
        grid-template-columns: 1fr;
        text-align: center;
        min-height: 0;
    }

    html.pv-redesign .pv-partner-card__body p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    html.pv-redesign .pv-partner-card__link {
        justify-content: center;
    }

    html.pv-redesign .pv-partner-card__visual {
        margin: 0 auto;
    }

    html.pv-redesign .pv-referral-partnership__bg-circles {
        width: 80%;
        opacity: 0.28;
        left: -20%;
    }
}

/* --- Referral ? Bonus program tiers --- */
html.pv-redesign .pv-bonus-program.bonus-program {
    position: relative;
    z-index: 1;
    margin-top: -80px;
    padding: clamp(120px, 12vw, 150px) 0 clamp(90px, 10vw, 120px);
    background: transparent;
    overflow: hidden;
    isolation: isolate;
}

html.pv-redesign .pv-bonus-program__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-bonus-program__bg-photo {
    position: absolute;
    inset: 0;
    background: url("../images/bonus-program.webp") center / cover no-repeat;
    transform: scale(1.04);
    will-change: transform;
}

html.pv-redesign .pv-bonus-program__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 15, 26, 0.55) 0%, rgba(15, 23, 42, 0.72) 45%, rgba(10, 15, 26, 0.88) 100%),
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 181, 41, 0.08) 0%, transparent 70%);
}

html.pv-redesign .pv-bonus-program__bg-grid {
    position: absolute;
    left: -14%;
    right: -14%;
    bottom: -40%;
    height: 62%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 46px 46px;
    transform: perspective(880px) rotateX(74deg);
    transform-origin: center top;
    opacity: 0.35;
    mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
}

html.pv-redesign .pv-bonus-program__coins {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

html.pv-redesign .pv-bonus-program__coins span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ffe08a 0%, #ffb529 42%, #d4920f 100%);
    box-shadow:
        0 8px 24px rgba(255, 181, 41, 0.25),
        inset 0 -4px 8px rgba(0, 0, 0, 0.15);
    opacity: 0.55;
}

html.pv-redesign .pv-bonus-program__coins span:nth-child(1) { width: 42px; height: 42px; top: 18%; left: 8%; }
html.pv-redesign .pv-bonus-program__coins span:nth-child(2) { width: 28px; height: 28px; top: 32%; left: 22%; opacity: 0.35; }
html.pv-redesign .pv-bonus-program__coins span:nth-child(3) { width: 56px; height: 56px; top: 12%; right: 14%; }
html.pv-redesign .pv-bonus-program__coins span:nth-child(4) { width: 34px; height: 34px; top: 48%; left: 5%; opacity: 0.4; }
html.pv-redesign .pv-bonus-program__coins span:nth-child(5) { width: 48px; height: 48px; bottom: 22%; right: 10%; }
html.pv-redesign .pv-bonus-program__coins span:nth-child(6) { width: 24px; height: 24px; bottom: 34%; left: 38%; opacity: 0.3; }
html.pv-redesign .pv-bonus-program__coins span:nth-child(7) { width: 38px; height: 38px; top: 58%; right: 28%; opacity: 0.45; }
html.pv-redesign .pv-bonus-program__coins span:nth-child(8) { width: 52px; height: 52px; bottom: 14%; left: 18%; }

html.pv-redesign .pv-bonus-program__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(56px);
    opacity: 0.45;
}

html.pv-redesign .pv-bonus-program__bg-orb--1 {
    width: 320px;
    height: 320px;
    top: 8%;
    left: -4%;
    background: radial-gradient(circle, rgba(255, 181, 41, 0.28) 0%, transparent 70%);
}

html.pv-redesign .pv-bonus-program__bg-orb--2 {
    width: 280px;
    height: 280px;
    bottom: 6%;
    right: -2%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.22) 0%, transparent 70%);
}

html.pv-redesign .pv-bonus-program__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.06) 48%, transparent 68%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-bonus-program .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-bonus-program .pv-section-head {
    margin-bottom: clamp(40px, 5vw, 56px);
}

html.pv-redesign .pv-section-label--light {
    color: rgba(255, 203, 108, 0.95);
    border-color: rgba(255, 203, 108, 0.25);
    background: rgba(255, 203, 108, 0.08);
}

html.pv-redesign .pv-section-title--gold {
    color: #ffb529;
    background: linear-gradient(135deg, #ffd56a 0%, #ffb529 50%, #f0a020 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html.pv-redesign .pv-section-desc--light {
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

html.pv-redesign .pv-bonus-program__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 20px);
}

html.pv-redesign .pv-bonus-tier {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: clamp(24px, 2.5vw, 32px);
    background: rgba(30, 46, 85, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

html.pv-redesign .pv-bonus-tier:hover,
html.pv-redesign .pv-bonus-tier.is-active {
    transform: translateY(-8px);
    border-color: rgba(255, 181, 41, 0.35);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 181, 41, 0.12);
}

html.pv-redesign .pv-bonus-tier--featured {
    background: linear-gradient(165deg, rgba(30, 46, 85, 0.88) 0%, rgba(20, 32, 62, 0.92) 100%);
    border-color: rgba(255, 181, 41, 0.2);
}

html.pv-redesign .pv-bonus-tier__corner {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

html.pv-redesign .pv-bonus-tier__corner::before,
html.pv-redesign .pv-bonus-tier__corner::after {
    content: '';
    position: absolute;
    background: #ffb529;
    transition: width 0.45s ease, height 0.45s ease;
}

html.pv-redesign .pv-bonus-tier__corner::before {
    right: 0;
    bottom: 0;
    width: 6px;
    height: 72px;
}

html.pv-redesign .pv-bonus-tier__corner::after {
    right: 0;
    bottom: 0;
    width: 72px;
    height: 6px;
}

html.pv-redesign .pv-bonus-tier:hover .pv-bonus-tier__corner::before {
    height: 88px;
}

html.pv-redesign .pv-bonus-tier:hover .pv-bonus-tier__corner::after {
    width: 88px;
}

html.pv-redesign .pv-bonus-tier__step {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
    color: #d64d30;
    line-height: 1;
}

html.pv-redesign .pv-bonus-tier__step::after {
    content: '';
    width: 30px;
    height: 2px;
    background: #d64d30;
}

html.pv-redesign .pv-bonus-tier__title {
    margin: 0 0 auto;
    padding-bottom: 20px;
    font-size: clamp(14px, 1.05vw, 16px);
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    min-height: 72px;
}

html.pv-redesign .pv-bonus-tier__reward {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 70px;
    padding: 12px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffc94a 0%, #ffb529 55%, #f0a820 100%);
    box-shadow: 0 8px 24px rgba(255, 181, 41, 0.28);
    text-align: center;
}

html.pv-redesign .pv-bonus-tier__amount {
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

html.pv-redesign .pv-bonus-tier__breakdown {
    font-size: 12px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.3;
}

html.pv-redesign .pv-bonus-tier__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 181, 41, 0.15);
    border: 1px solid rgba(255, 181, 41, 0.35);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffd56a;
}

@media (max-width: 1199px) {
    html.pv-redesign .pv-bonus-program__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    html.pv-redesign .pv-bonus-program.bonus-program {
        margin-top: -80px;
        padding-top: 100px;
    }

    html.pv-redesign .pv-bonus-program__grid {
        grid-template-columns: 1fr;
    }

    html.pv-redesign .pv-bonus-tier__title {
        min-height: 0;
    }

    html.pv-redesign .pv-bonus-program__coins span {
        opacity: 0.25;
    }
}

/* --- Referral ? Sub-ISO program --- */
html.pv-redesign .pv-iso-program.iso-program {
    position: relative;
    padding: clamp(80px, 9vw, 110px) 0 clamp(90px, 10vw, 120px);
    background: transparent;
    overflow: hidden;
}

html.pv-redesign .pv-iso-program.iso-program::before {
    display: none !important;
}

html.pv-redesign .pv-iso-program__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-iso-program__bg-surface {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff8ea 42%, #fff4df 100%);
}

html.pv-redesign .pv-iso-program__bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 94%;
    height: 82%;
    background: #fff8ea;
    border-radius: 0 0 120px 0;
    opacity: 0.95;
}

html.pv-redesign .pv-iso-program__bg-grid {
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: -38%;
    height: 58%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.03) 1px, transparent 1px);
    background-size: 46px 46px;
    transform: perspective(900px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.4;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

html.pv-redesign .pv-iso-program__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.4;
}

html.pv-redesign .pv-iso-program__bg-orb--1 {
    width: 280px;
    height: 280px;
    top: 10%;
    right: 6%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.18) 0%, transparent 70%);
}

html.pv-redesign .pv-iso-program__bg-orb--2 {
    width: 260px;
    height: 260px;
    bottom: 12%;
    left: 8%;
    background: radial-gradient(circle, rgba(255, 203, 108, 0.22) 0%, transparent 70%);
}

html.pv-redesign .pv-iso-program__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.4) 48%, transparent 66%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-iso-program .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-iso-program .pv-section-head {
    margin-bottom: clamp(36px, 4.5vw, 52px);
}

html.pv-redesign .pv-iso-program__panel {
    position: relative;
    min-height: clamp(520px, 50vw, 640px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 32px 72px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.35) inset;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: clamp(48px, 6vw, 80px) clamp(32px, 4vw, 48px);
    transform-style: preserve-3d;
    will-change: transform;
}

html.pv-redesign .pv-iso-program__panel-media {
    position: absolute;
    inset: 0;
    background: url("../images/iso-bg.webp") left center / cover no-repeat;
    transform: scale(1.02);
    will-change: transform;
}

html.pv-redesign .pv-iso-program__panel-ring {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    pointer-events: none;
    z-index: 1;
}

html.pv-redesign .pv-iso-program__panel-overlay,
html.pv-redesign .pv-iso-program__panel-glow {
    display: none !important;
}

html.pv-redesign .pv-iso-program__panel-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.12) 48%, transparent 100%);
    transform: translateX(-130%);
    pointer-events: none;
    z-index: 2;
}

html.pv-redesign .pv-iso-program__benefits-wrap {
    position: relative;
    z-index: 3;
    width: 46%;
    max-width: 480px;
    padding: clamp(24px, 3vw, 32px);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

html.pv-redesign .pv-iso-program__highlight {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: clamp(20px, 2.5vw, 28px);
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(30, 46, 85, 0.1);
}

html.pv-redesign .pv-iso-program__highlight-value {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--pv-orange);
}

html.pv-redesign .pv-iso-program__highlight-label {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--pv-navy);
    opacity: 0.85;
}

html.pv-redesign .pv-iso-program__benefits {
    position: relative;
    z-index: 2;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: none;
    display: grid;
    gap: clamp(16px, 2vw, 22px);
}

html.pv-redesign .pv-iso-program__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0 0 clamp(16px, 2vw, 20px);
    border-bottom: 1px solid rgba(30, 46, 85, 0.08);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding-left 0.35s ease;
}

html.pv-redesign .pv-iso-program__benefits li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

html.pv-redesign .pv-iso-program__benefits li:hover {
    transform: translateX(6px);
    padding-left: 4px;
}

html.pv-redesign .pv-iso-program__icon {
    flex-shrink: 0;
    width: auto;
    height: auto;
    display: block;
    margin-top: 2px;
    transition: transform 0.35s ease;
}

html.pv-redesign .pv-iso-program__benefits li:hover .pv-iso-program__icon {
    transform: scale(1.08);
}

html.pv-redesign .pv-iso-program__icon img {
    width: 24px;
    height: auto;
    display: block;
}

html.pv-redesign .pv-iso-program__text {
    font-size: clamp(15px, 1.1vw, 17px);
    font-weight: 600;
    line-height: 1.55;
    color: var(--pv-navy);
}

html.pv-redesign .pv-iso-program__cta {
    margin-top: clamp(22px, 2.8vw, 28px);
    width: 100%;
    justify-content: center;
}

@media (max-width: 991px) {
    html.pv-redesign .pv-iso-program__panel {
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0;
        border-radius: 16px;
    }

    html.pv-redesign .pv-iso-program__panel-media {
        position: relative;
        inset: auto;
        height: 240px;
        flex-shrink: 0;
        border-radius: 16px 16px 0 0;
    }

    html.pv-redesign .pv-iso-program__panel-ring {
        display: none;
    }

    html.pv-redesign .pv-iso-program__benefits-wrap {
        width: 100%;
        max-width: none;
        padding: 24px 22px 28px;
        background: rgba(255, 255, 255, 0.96);
        border: none;
        border-radius: 0 0 16px 16px;
        box-shadow: none;
    }

    html.pv-redesign .pv-iso-program__bg-accent {
        width: 100%;
        height: 70%;
        border-radius: 0 0 60px 0;
    }
}

/* --- Referral ? Schedule a call --- */
html.pv-redesign .pv-ref-schedule.ref-schedule {
    position: relative;
    padding: clamp(72px, 8vw, 100px) 0 clamp(80px, 9vw, 110px);
    background: transparent;
    overflow: hidden;
}

html.pv-redesign .pv-ref-schedule.ref-schedule::before {
    display: none !important;
}

html.pv-redesign .pv-ref-schedule__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-ref-schedule__bg-surface {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #fff8ea 0%, #ffffff 45%, #f7f9fa 100%);
}

html.pv-redesign .pv-ref-schedule__bg-grid {
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: -40%;
    height: 58%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.03) 1px, transparent 1px);
    background-size: 46px 46px;
    transform: perspective(900px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.4;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

html.pv-redesign .pv-ref-schedule__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.38;
}

html.pv-redesign .pv-ref-schedule__bg-orb--1 {
    width: 260px;
    height: 260px;
    top: 12%;
    left: 4%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.16) 0%, transparent 70%);
}

html.pv-redesign .pv-ref-schedule__bg-orb--2 {
    width: 280px;
    height: 280px;
    bottom: 10%;
    right: 6%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.12) 0%, transparent 70%);
}

html.pv-redesign .pv-ref-schedule__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 48%, transparent 66%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-ref-schedule .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-ref-schedule__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
}

html.pv-redesign .pv-ref-schedule__visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0 12px 12px;
}

html.pv-redesign .pv-ref-schedule__visual-accent {
    position: absolute;
    left: 0;
    top: 8%;
    bottom: 8%;
    width: clamp(48px, 5vw, 72px);
    background: linear-gradient(180deg, var(--pv-teal), var(--pv-green));
    border-radius: 4px;
    box-shadow: 0 12px 32px rgba(5, 169, 128, 0.25);
    z-index: 0;
}

html.pv-redesign .pv-ref-schedule__visual-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    margin-left: clamp(36px, 4vw, 56px);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
    border-bottom: 18px solid var(--pv-teal);
}

html.pv-redesign .pv-ref-schedule__visual-frame img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 879 / 526;
    object-fit: cover;
    object-position: center 32%;
}

html.pv-redesign .pv-ref-schedule__visual-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.2) 48%, transparent 100%);
    transform: translateX(-130%);
    pointer-events: none;
}

html.pv-redesign .pv-ref-schedule__card {
    background: linear-gradient(165deg, #1e2e55 0%, #162038 100%);
    border-radius: 24px;
    padding: clamp(28px, 3.5vw, 40px);
    box-shadow:
        0 32px 70px rgba(15, 23, 42, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transform-style: preserve-3d;
}

html.pv-redesign .pv-ref-schedule__card-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: clamp(24px, 3vw, 32px);
}

html.pv-redesign .pv-ref-schedule__card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

html.pv-redesign .pv-ref-schedule__card-icon img {
    width: 40px;
    height: auto;
    display: block;
}

html.pv-redesign .pv-ref-schedule__card-head h3 {
    margin: 0;
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    font-weight: 600;
    line-height: 1.45;
    color: #ffffff;
}

html.pv-redesign .pv-ref-schedule__form {
    background: #ffffff;
    border-radius: 20px;
    padding: clamp(22px, 2.8vw, 28px);
    margin: 0;
}

html.pv-redesign .pv-ref-schedule__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

html.pv-redesign .pv-ref-schedule__field--full {
    grid-column: 1 / -1;
}

html.pv-redesign .pv-ref-schedule__form .form-control {
    width: 100%;
    height: 44px;
    margin: 0;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--pv-navy);
    background: #f8fafc;
    border: 1px solid rgba(30, 46, 85, 0.1);
    border-radius: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

html.pv-redesign .pv-ref-schedule__form .form-control:focus {
    outline: none;
    background: #ffffff;
    border-color: rgba(5, 169, 128, 0.45);
    box-shadow: 0 0 0 3px rgba(5, 169, 128, 0.12);
}

html.pv-redesign .pv-ref-schedule__form textarea.form-control {
    height: 96px;
    resize: none;
    padding-top: 12px;
}

html.pv-redesign .pv-ref-schedule__form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231e2e55' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

html.pv-redesign .pv-ref-schedule__submit {
    width: 100%;
    justify-content: center;
}

@media (max-width: 991px) {
    html.pv-redesign .pv-ref-schedule__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    html.pv-redesign .pv-ref-schedule__visual {
        min-height: 0;
        padding: 0 0 0 8px;
    }

    html.pv-redesign .pv-ref-schedule__visual-frame {
        margin-left: 28px;
    }

    html.pv-redesign .pv-ref-schedule__fields {
        grid-template-columns: 1fr;
    }

    html.pv-redesign .pv-ref-schedule__card-head h3 {
        font-size: 1.2rem;
    }
}

/* --- Contact page ? form section --- */
html.pv-redesign .pv-contact.contact {
    position: relative;
    padding: clamp(80px, 9vw, 110px) 0 clamp(90px, 10vw, 120px);
    background: linear-gradient(180deg, #f7f9fa 0%, #ffffff 50%, var(--pv-surface) 100%);
    overflow: hidden;
}

html.pv-redesign .pv-contact__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-contact__bg-grid {
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: -42%;
    height: 62%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(900px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.42;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

html.pv-redesign .pv-contact__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.38;
}

html.pv-redesign .pv-contact__bg-orb--1 {
    width: 280px;
    height: 280px;
    top: 10%;
    left: -4%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.14) 0%, transparent 70%);
}

html.pv-redesign .pv-contact__bg-orb--2 {
    width: 260px;
    height: 260px;
    bottom: 8%;
    right: -2%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.12) 0%, transparent 70%);
}

html.pv-redesign .pv-contact__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.4) 48%, transparent 66%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-contact .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-contact .pv-section-head {
    margin-bottom: clamp(40px, 5vw, 56px);
}

html.pv-redesign .pv-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(32px, 4.5vw, 56px);
    align-items: center;
}

html.pv-redesign .pv-contact__intro {
    margin: 0 0 clamp(28px, 3.5vw, 36px);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.75;
    color: var(--pv-text-muted);
    max-width: 440px;
}

html.pv-redesign .pv-contact__channels {
    list-style: none;
    margin: 0 0 clamp(28px, 3.5vw, 36px);
    padding: 0;
    display: grid;
    gap: 14px;
}

html.pv-redesign .pv-contact__channels li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 !important;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(30, 46, 85, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

html.pv-redesign .pv-contact__channels li:hover {
    transform: translateX(6px);
    border-color: rgba(5, 169, 128, 0.2);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

html.pv-redesign .pv-contact__channel-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    display: grid !important;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(214, 77, 48, 0.1), rgba(5, 169, 128, 0.1));
    border: 1px solid rgba(30, 46, 85, 0.06);
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0;
}

html.pv-redesign .pv-contact__channel-icon img {
    width: 28px;
    height: 28px;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    object-fit: contain;
    object-position: center center;
}

html.pv-redesign .pv-contact__channels.info li img {
    margin-right: 0 !important;
    max-width: none !important;
}

html.pv-redesign .pv-contact__channel-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

html.pv-redesign .pv-contact__channel-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pv-text-muted);
}

html.pv-redesign .pv-contact__channels li a {
    font-size: clamp(16px, 1.2vw, 18px) !important;
    font-weight: 700 !important;
    color: var(--pv-navy) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

html.pv-redesign .pv-contact__channels li a:hover {
    color: var(--pv-green) !important;
}

html.pv-redesign .pv-contact__social-label {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pv-text-muted);
}

html.pv-redesign .pv-contact__social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

html.pv-redesign .pv-contact__social-list li {
    margin: 0 !important;
    display: block;
}

html.pv-redesign .pv-contact__social-list a {
    width: 46px !important;
    height: 46px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: var(--pv-navy) !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 17px !important;
    line-height: 1 !important;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

html.pv-redesign .pv-contact__social-list a:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--pv-orange), var(--pv-green)) !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}

html.pv-redesign .pv-contact__form-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(28px, 3.5vw, 40px);
    overflow: hidden;
    box-shadow:
        0 28px 64px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(30, 46, 85, 0.04);
}

html.pv-redesign .pv-contact__form-card::before {
    display: none !important;
}

html.pv-redesign .pv-contact__form-accent {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--pv-orange);
    opacity: 0.9;
    pointer-events: none;
}

html.pv-redesign .pv-contact__form-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 clamp(22px, 2.8vw, 28px);
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 600;
    line-height: 1.45;
    color: var(--pv-navy);
}

html.pv-redesign .pv-contact__fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

html.pv-redesign .pv-contact__field--full {
    grid-column: 1 / -1;
}

html.pv-redesign .pv-contact__form .form-control {
    width: 100%;
    height: 46px;
    margin: 0;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--pv-navy);
    background: #f8fafc;
    border: 1px solid rgba(30, 46, 85, 0.1);
    border-radius: 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

html.pv-redesign .pv-contact__form .form-control:focus {
    outline: none;
    background: #ffffff;
    border-color: rgba(5, 169, 128, 0.45);
    box-shadow: 0 0 0 3px rgba(5, 169, 128, 0.12);
}

html.pv-redesign .pv-contact__form textarea.form-control {
    height: 110px;
    resize: none;
    padding-top: 12px;
}

html.pv-redesign .pv-contact__submit {
    width: 100%;
    justify-content: center;
}

@media (max-width: 991px) {
    html.pv-redesign .pv-contact__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    html.pv-redesign .pv-contact__intro {
        max-width: none;
    }

    html.pv-redesign .pv-contact__fields {
        grid-template-columns: 1fr;
    }
}

/* --- Desktop Terminal page --- */
html.pv-redesign .pv-dt-terminals.point-of-sale {
    position: relative;
    padding: clamp(80px, 9vw, 110px) 0 clamp(90px, 10vw, 120px);
    background: linear-gradient(180deg, #f7f9fa 0%, #ffffff 45%, var(--pv-surface) 100%);
    overflow: hidden;
}

html.pv-redesign .pv-dt__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-dt__bg-grid {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -40%;
    height: 58%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(900px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.4;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

html.pv-redesign .pv-dt__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.36;
}

html.pv-redesign .pv-dt__bg-orb--1 {
    width: 280px;
    height: 280px;
    top: 8%;
    left: -4%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.14) 0%, transparent 70%);
}

html.pv-redesign .pv-dt__bg-orb--2 {
    width: 260px;
    height: 260px;
    bottom: 10%;
    right: -2%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.12) 0%, transparent 70%);
}

html.pv-redesign .pv-dt__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.38) 48%, transparent 66%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-dt-terminals .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-dt-terminals .pv-section-head {
    margin-bottom: clamp(44px, 5vw, 60px);
}

html.pv-redesign .pv-dt__list {
    display: grid;
    gap: clamp(36px, 4.5vw, 52px);
}

html.pv-redesign .pv-dt__row {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: stretch;
}

html.pv-redesign .pv-dt__row--flip .pv-dt__device {
    order: 2;
}

html.pv-redesign .pv-dt__row--flip .pv-dt__details {
    order: 1;
}

html.pv-redesign .pv-dt__device {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(30, 46, 85, 0.08);
    border-radius: 24px;
    padding: clamp(24px, 3vw, 32px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

html.pv-redesign .pv-dt__device-accent {
    position: absolute;
    top: -58px;
    left: -58px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--pv-orange);
    opacity: 0.88;
    pointer-events: none;
}

html.pv-redesign .pv-dt__device-head {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}

html.pv-redesign .pv-dt__device-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pv-text-muted);
}

html.pv-redesign .pv-dt__device-head h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 700;
    color: var(--pv-navy);
    line-height: 1.2;
}

html.pv-redesign .pv-dt__device-visual {
    position: relative;
    margin-bottom: 22px;
    min-height: 260px;
    display: grid;
    place-items: center;
}

html.pv-redesign .pv-dt__device-glow {
    position: absolute;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.16) 0%, transparent 72%);
    filter: blur(8px);
}

html.pv-redesign .pv-dt__device-frame {
    position: relative;
    z-index: 1;
    width: min(100%, 300px);
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(237, 236, 252, 0.7));
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

html.pv-redesign .pv-dt__device-frame img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

html.pv-redesign .pv-dt__device-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.55) 50%, transparent 66%);
    transform: translateX(-130%);
    pointer-events: none;
}

html.pv-redesign .pv-dt__device-badge {
    position: absolute;
    right: 12px;
    bottom: 8px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-size: 12px;
    font-weight: 600;
    color: var(--pv-navy);
}

html.pv-redesign .pv-dt__device-badge i {
    color: var(--pv-orange);
    font-size: 13px;
}

html.pv-redesign .pv-dt__payments h4 {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pv-navy);
}

html.pv-redesign .pv-dt__chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

html.pv-redesign .pv-dt__chips li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 !important;
    padding: 7px 11px;
    border-radius: 100px;
    background: rgba(30, 46, 85, 0.04);
    border: 1px solid rgba(30, 46, 85, 0.07);
    font-size: 12px;
    font-weight: 600;
    color: var(--pv-navy);
}

html.pv-redesign .pv-dt__chips i {
    color: var(--pv-orange);
    font-size: 10px;
}

html.pv-redesign .pv-dt__details {
    background: linear-gradient(145deg, rgba(237, 236, 252, 0.72), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(30, 46, 85, 0.08);
    border-radius: 24px;
    padding: clamp(26px, 3.2vw, 36px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
}

html.pv-redesign .pv-dt__details .pv-section-label {
    margin-bottom: 10px;
}

html.pv-redesign .pv-dt__details-title {
    margin: 0 0 18px;
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    font-weight: 700;
    color: var(--pv-navy);
    line-height: 1.35;
}

html.pv-redesign .pv-dt__features {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 8px;
}

html.pv-redesign .pv-dt__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--pv-navy);
}

html.pv-redesign .pv-dt__features i {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--pv-orange);
    font-size: 12px;
}

html.pv-redesign .pv-dt__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
}

html.pv-redesign .pv-dt__download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(30, 46, 85, 0.1);
    color: var(--pv-navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

html.pv-redesign .pv-dt__download img {
    width: 22px;
    height: auto;
    margin: 0 !important;
    display: block;
}

html.pv-redesign .pv-dt__download:hover {
    transform: translateY(-2px);
    border-color: rgba(5, 169, 128, 0.28);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    color: var(--pv-navy);
}

@media (max-width: 991px) {
    html.pv-redesign .pv-dt__row,
    html.pv-redesign .pv-dt__row--flip {
        grid-template-columns: 1fr;
    }

    html.pv-redesign .pv-dt__row--flip .pv-dt__device,
    html.pv-redesign .pv-dt__row--flip .pv-dt__details {
        order: unset;
    }

    html.pv-redesign .pv-dt__device-visual {
        min-height: 220px;
    }
}

/* --- E-Commerce page --- */
html.pv-redesign .pv-eco-solutions {
    position: relative;
    padding: clamp(80px, 9vw, 110px) 0 clamp(70px, 8vw, 90px);
    background: linear-gradient(180deg, #f7f9fa 0%, #ffffff 50%, var(--pv-surface) 100%);
    overflow: hidden;
}

html.pv-redesign .pv-eco__bg,
html.pv-redesign .pv-eco-why__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-eco__bg-grid,
html.pv-redesign .pv-eco-why__bg-grid {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -42%;
    height: 58%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(900px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.4;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

html.pv-redesign .pv-eco__bg-orb,
html.pv-redesign .pv-eco-why__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.36;
}

html.pv-redesign .pv-eco__bg-orb--1,
html.pv-redesign .pv-eco-why__bg-orb--1 {
    width: 280px;
    height: 280px;
    top: 10%;
    left: -4%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.14) 0%, transparent 70%);
}

html.pv-redesign .pv-eco__bg-orb--2,
html.pv-redesign .pv-eco-why__bg-orb--2 {
    width: 260px;
    height: 260px;
    bottom: 8%;
    right: -2%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.12) 0%, transparent 70%);
}

html.pv-redesign .pv-eco__bg-shine,
html.pv-redesign .pv-eco-why__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.38) 48%, transparent 66%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-eco-solutions .container,
html.pv-redesign .pv-eco-why .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-eco-solutions .pv-section-head {
    margin-bottom: clamp(44px, 5vw, 60px);
}

html.pv-redesign .pv-eco__list {
    display: grid;
    gap: clamp(48px, 6vw, 72px);
}

html.pv-redesign .pv-eco__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
}

html.pv-redesign .pv-eco__row--flip .pv-eco__content {
    order: 2;
}

html.pv-redesign .pv-eco__row--flip .pv-eco__visual {
    order: 1;
}

html.pv-redesign .pv-eco__title {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--pv-navy);
}

html.pv-redesign .pv-eco__content p {
    margin: 0 0 18px;
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.75;
    color: var(--pv-text-muted);
    max-width: 520px;
}

html.pv-redesign .pv-eco__chips {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

html.pv-redesign .pv-eco__chips li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 !important;
    padding: 8px 12px;
    border-radius: 100px;
    background: rgba(30, 46, 85, 0.04);
    border: 1px solid rgba(30, 46, 85, 0.07);
    font-size: 12px;
    font-weight: 600;
    color: var(--pv-navy);
}

html.pv-redesign .pv-eco__chips i {
    color: var(--pv-orange);
    font-size: 11px;
}

html.pv-redesign .pv-eco__points {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 8px;
}

html.pv-redesign .pv-eco__points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--pv-navy);
}

html.pv-redesign .pv-eco__points i {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--pv-orange);
    font-size: 12px;
}

html.pv-redesign .pv-eco__visual {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
}

html.pv-redesign .pv-eco__visual-glow,
html.pv-redesign .pv-eco-why__visual-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.16) 0%, transparent 72%);
    filter: blur(8px);
}

html.pv-redesign .pv-eco__visual-ring {
    position: absolute;
    width: 88%;
    height: 88%;
    border-radius: 50%;
    border: 1px dashed rgba(30, 46, 85, 0.12);
    animation: pv-eco-ring 24s linear infinite;
}

@keyframes pv-eco-ring {
    to { transform: rotate(360deg); }
}

html.pv-redesign .pv-eco__accent {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    opacity: 0.85;
    z-index: 0;
}

html.pv-redesign .pv-eco__accent--green {
    top: 8%;
    right: 10%;
    background: linear-gradient(135deg, rgba(5, 169, 128, 0.22), rgba(5, 169, 128, 0.08));
}

html.pv-redesign .pv-eco__accent--gold {
    bottom: 10%;
    left: 8%;
    background: linear-gradient(135deg, rgba(214, 77, 48, 0.2), rgba(232, 120, 58, 0.08));
}

html.pv-redesign .pv-eco__frame {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(237, 236, 252, 0.72));
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

html.pv-redesign .pv-eco__frame-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

html.pv-redesign .pv-eco__frame--mirror .pv-eco__frame-media {
    transform: scaleX(-1);
}

html.pv-redesign .pv-eco__frame img {
    display: block;
    width: 100%;
    height: auto;
}

html.pv-redesign .pv-eco__frame-shine,
html.pv-redesign .pv-eco-why__frame-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.55) 50%, transparent 66%);
    transform: translateX(-130%);
    pointer-events: none;
}

html.pv-redesign .pv-eco__badge,
html.pv-redesign .pv-eco-why__badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-size: 12px;
    font-weight: 600;
    color: var(--pv-navy);
}

html.pv-redesign .pv-eco__badge i,
html.pv-redesign .pv-eco-why__badge i {
    color: var(--pv-orange);
    font-size: 13px;
}

html.pv-redesign .pv-eco__row--flip .pv-eco__badge {
    right: auto;
    left: 18px;
}

html.pv-redesign .pv-eco-why {
    position: relative;
    padding: clamp(80px, 9vw, 110px) 0 clamp(90px, 10vw, 120px);
    background: linear-gradient(180deg, var(--pv-surface) 0%, #ffffff 55%, #f7f9fa 100%);
    overflow: hidden;
}

html.pv-redesign .pv-eco-why .pv-section-head {
    margin-bottom: clamp(40px, 5vw, 56px);
}

html.pv-redesign .pv-eco-why__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(32px, 4.5vw, 56px);
    align-items: center;
}

html.pv-redesign .pv-eco-why__benefits {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 14px;
}

html.pv-redesign .pv-eco-why__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0 !important;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(30, 46, 85, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

html.pv-redesign .pv-eco-why__benefits li:hover {
    transform: translateX(6px);
    border-color: rgba(5, 169, 128, 0.2);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

html.pv-redesign .pv-eco-why__benefit-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(214, 77, 48, 0.1), rgba(5, 169, 128, 0.1));
    border: 1px solid rgba(30, 46, 85, 0.06);
    color: var(--pv-orange);
    font-size: 17px;
}

html.pv-redesign .pv-eco-why__benefit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

html.pv-redesign .pv-eco-why__benefit-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--pv-navy);
    line-height: 1.35;
}

html.pv-redesign .pv-eco-why__benefit-text span {
    font-size: 14px;
    line-height: 1.6;
    color: var(--pv-text-muted);
}

html.pv-redesign .pv-eco-why__visual {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
}

html.pv-redesign .pv-eco-why__frame {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(237, 236, 252, 0.72));
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

html.pv-redesign .pv-eco-why__frame img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    html.pv-redesign .pv-eco__row,
    html.pv-redesign .pv-eco__row--flip {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    html.pv-redesign .pv-eco__row--flip .pv-eco__content,
    html.pv-redesign .pv-eco__row--flip .pv-eco__visual {
        order: unset;
    }

    html.pv-redesign .pv-eco__content p {
        max-width: none;
    }

    html.pv-redesign .pv-eco__visual {
        min-height: 0;
    }

    html.pv-redesign .pv-eco-why__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    html.pv-redesign .pv-eco-why__visual {
        min-height: 0;
    }
}

/* --- Pay at the Table page --- */
html.pv-redesign .pv-pat-benefits.easy-payment {
    position: relative;
    padding: clamp(80px, 9vw, 110px) 0 clamp(70px, 8vw, 90px);
    background: linear-gradient(180deg, #f7f9fa 0%, #ffffff 50%, var(--pv-surface) 100%);
    overflow: hidden;
}

html.pv-redesign .pv-pat__bg,
html.pv-redesign .pv-pat-showcase__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-pat__bg-grid,
html.pv-redesign .pv-pat-showcase__bg-grid {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -42%;
    height: 58%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(900px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.4;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

html.pv-redesign .pv-pat__bg-orb,
html.pv-redesign .pv-pat-showcase__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.36;
}

html.pv-redesign .pv-pat__bg-orb--1,
html.pv-redesign .pv-pat-showcase__bg-orb--1 {
    width: 280px;
    height: 280px;
    top: 10%;
    left: -4%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.14) 0%, transparent 70%);
}

html.pv-redesign .pv-pat__bg-orb--2,
html.pv-redesign .pv-pat-showcase__bg-orb--2 {
    width: 260px;
    height: 260px;
    bottom: 8%;
    right: -2%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.12) 0%, transparent 70%);
}

html.pv-redesign .pv-pat__bg-shine,
html.pv-redesign .pv-pat-showcase__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.38) 48%, transparent 66%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-pat-benefits .container,
html.pv-redesign .pv-pat-showcase .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-pat-benefits .pv-section-head {
    margin-bottom: clamp(40px, 5vw, 56px);
}

html.pv-redesign .pv-pat__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 24px);
    margin-bottom: clamp(32px, 4vw, 44px);
}

html.pv-redesign .pv-pat__card {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(30, 46, 85, 0.08);
    border-radius: 22px;
    padding: clamp(22px, 2.8vw, 28px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

html.pv-redesign .pv-pat__card:hover {
    transform: translateY(-6px);
    border-color: rgba(5, 169, 128, 0.22);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.1);
}

html.pv-redesign .pv-pat__card-accent {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--pv-green);
    opacity: 0.85;
    pointer-events: none;
}

html.pv-redesign .pv-pat__card:nth-child(2) .pv-pat__card-accent {
    background: var(--pv-orange);
}

html.pv-redesign .pv-pat__card:nth-child(3) .pv-pat__card-accent {
    background: linear-gradient(135deg, var(--pv-orange), var(--pv-green));
}

html.pv-redesign .pv-pat__card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

html.pv-redesign .pv-pat__card-top h3 {
    margin: 0;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--pv-navy);
    max-width: 62%;
}

html.pv-redesign .pv-pat__card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(214, 77, 48, 0.1), rgba(5, 169, 128, 0.1));
    border: 1px solid rgba(30, 46, 85, 0.06);
}

html.pv-redesign .pv-pat__card-icon img {
    width: 40px;
    height: auto;
    margin: 0 !important;
    display: block;
    object-fit: contain;
}

html.pv-redesign .pv-pat__card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--pv-text-muted);
}

html.pv-redesign .pv-pat__cta {
    display: flex;
    justify-content: center;
}

html.pv-redesign .pv-pat-showcase.accept {
    position: relative;
    padding: clamp(80px, 9vw, 110px) 0 clamp(90px, 10vw, 120px);
    background: linear-gradient(180deg, var(--pv-surface) 0%, #ffffff 55%, #f7f9fa 100%);
    overflow: hidden;
}

html.pv-redesign .pv-pat-showcase__list {
    display: grid;
    gap: clamp(48px, 6vw, 72px);
}

html.pv-redesign .pv-pat-showcase__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
}

html.pv-redesign .pv-pat-showcase__row--flip .pv-pat-showcase__content {
    order: 2;
}

html.pv-redesign .pv-pat-showcase__row--flip .pv-pat-showcase__visual {
    order: 1;
}

html.pv-redesign .pv-pat-showcase__title {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--pv-navy);
}

html.pv-redesign .pv-pat-showcase__content p {
    margin: 0 0 18px;
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.75;
    color: var(--pv-text-muted);
    max-width: 520px;
}

html.pv-redesign .pv-pat-showcase__chips {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

html.pv-redesign .pv-pat-showcase__chips li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 !important;
    padding: 8px 12px;
    border-radius: 100px;
    background: rgba(30, 46, 85, 0.04);
    border: 1px solid rgba(30, 46, 85, 0.07);
    font-size: 12px;
    font-weight: 600;
    color: var(--pv-navy);
}

html.pv-redesign .pv-pat-showcase__chips i {
    color: var(--pv-orange);
    font-size: 11px;
}

html.pv-redesign .pv-pat-showcase__points {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 8px;
}

html.pv-redesign .pv-pat-showcase__points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--pv-navy);
}

html.pv-redesign .pv-pat-showcase__points i {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--pv-orange);
    font-size: 12px;
}

html.pv-redesign .pv-pat-showcase__visual {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
}

html.pv-redesign .pv-pat-showcase__visual-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.16) 0%, transparent 72%);
    filter: blur(8px);
}

html.pv-redesign .pv-pat-showcase__visual-ring {
    position: absolute;
    width: 88%;
    height: 88%;
    border-radius: 50%;
    border: 1px dashed rgba(30, 46, 85, 0.12);
    animation: pv-pat-ring 24s linear infinite;
}

@keyframes pv-pat-ring {
    to { transform: rotate(360deg); }
}

html.pv-redesign .pv-pat-showcase__accent {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    opacity: 0.85;
    z-index: 0;
}

html.pv-redesign .pv-pat-showcase__accent--green {
    top: 8%;
    right: 10%;
    background: linear-gradient(135deg, rgba(5, 169, 128, 0.22), rgba(5, 169, 128, 0.08));
}

html.pv-redesign .pv-pat-showcase__accent--gold {
    bottom: 10%;
    left: 8%;
    background: linear-gradient(135deg, rgba(214, 77, 48, 0.2), rgba(232, 120, 58, 0.08));
}

html.pv-redesign .pv-pat-showcase__frame {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(237, 236, 252, 0.72));
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

html.pv-redesign .pv-pat-showcase__frame-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

html.pv-redesign .pv-pat-showcase__frame--mirror .pv-pat-showcase__frame-media {
    transform: scaleX(-1);
}

html.pv-redesign .pv-pat-showcase__frame img {
    display: block;
    width: 100%;
    height: auto;
}

html.pv-redesign .pv-pat-showcase__frame-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.55) 50%, transparent 66%);
    transform: translateX(-130%);
    pointer-events: none;
}

html.pv-redesign .pv-pat-showcase__badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-size: 12px;
    font-weight: 600;
    color: var(--pv-navy);
}

html.pv-redesign .pv-pat-showcase__badge i {
    color: var(--pv-orange);
    font-size: 13px;
}

html.pv-redesign .pv-pat-showcase__row--flip .pv-pat-showcase__badge {
    right: auto;
    left: 18px;
}

@media (max-width: 991px) {
    html.pv-redesign .pv-pat__cards {
        grid-template-columns: 1fr;
    }

    html.pv-redesign .pv-pat__card-top h3 {
        max-width: none;
    }

    html.pv-redesign .pv-pat-showcase__row,
    html.pv-redesign .pv-pat-showcase__row--flip {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    html.pv-redesign .pv-pat-showcase__row--flip .pv-pat-showcase__content,
    html.pv-redesign .pv-pat-showcase__row--flip .pv-pat-showcase__visual {
        order: unset;
    }

    html.pv-redesign .pv-pat-showcase__content p {
        max-width: none;
    }

    html.pv-redesign .pv-pat-showcase__visual {
        min-height: 0;
    }
}

/* --- Restaurant page --- */
html.pv-redesign .pv-rest-intro.resturant {
    position: relative;
    padding: clamp(80px, 9vw, 110px) 0 clamp(70px, 8vw, 90px);
    background: linear-gradient(180deg, #fff8ea 0%, #ffffff 42%, var(--pv-surface) 100%);
    overflow: hidden;
}

html.pv-redesign .pv-rest-intro.resturant::before {
    display: none !important;
}

html.pv-redesign .pv-rest__bg,
html.pv-redesign .pv-rest-features__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-rest__bg-grid,
html.pv-redesign .pv-rest-features__bg-grid {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -42%;
    height: 58%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(900px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.4;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

html.pv-redesign .pv-rest__bg-orb,
html.pv-redesign .pv-rest-features__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.36;
}

html.pv-redesign .pv-rest__bg-orb--1,
html.pv-redesign .pv-rest-features__bg-orb--1 {
    width: 280px;
    height: 280px;
    top: 10%;
    left: -4%;
    background: radial-gradient(circle, rgba(255, 203, 108, 0.18) 0%, transparent 70%);
}

html.pv-redesign .pv-rest__bg-orb--2,
html.pv-redesign .pv-rest-features__bg-orb--2 {
    width: 260px;
    height: 260px;
    bottom: 8%;
    right: -2%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.12) 0%, transparent 70%);
}

html.pv-redesign .pv-rest__bg-shine,
html.pv-redesign .pv-rest-features__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.38) 48%, transparent 66%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-rest-intro .container,
html.pv-redesign .pv-rest-features .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-rest-intro .pv-section-head {
    margin-bottom: clamp(40px, 5vw, 56px);
}

html.pv-redesign .pv-rest-intro__showcase {
    position: relative;
    max-width: 920px;
    margin: 0 auto clamp(44px, 5vw, 60px);
    display: grid;
    place-items: center;
    min-height: 320px;
}

html.pv-redesign .pv-rest-intro__visual-glow {
    position: absolute;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 203, 108, 0.2) 0%, transparent 72%);
    filter: blur(10px);
}

html.pv-redesign .pv-rest-intro__frame {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 14px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 234, 0.85));
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 28px 64px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

html.pv-redesign .pv-rest-intro__frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

html.pv-redesign .pv-rest-intro__frame-shine,
html.pv-redesign .pv-rest-intro__side-shine,
html.pv-redesign .pv-rest-features__frame-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.55) 50%, transparent 66%);
    transform: translateX(-130%);
    pointer-events: none;
}

html.pv-redesign .pv-rest-intro__badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-size: 12px;
    font-weight: 600;
    color: var(--pv-navy);
}

html.pv-redesign .pv-rest-intro__badge i {
    color: var(--pv-orange);
    font-size: 13px;
}

html.pv-redesign .pv-rest-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
}

html.pv-redesign .pv-rest-intro__side-visual {
    position: relative;
    min-height: 300px;
    display: grid;
    place-items: center;
}

html.pv-redesign .pv-rest-intro__side-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.14) 0%, transparent 72%);
    filter: blur(8px);
}

html.pv-redesign .pv-rest-intro__side-frame {
    position: relative;
    z-index: 1;
    width: min(100%, 380px);
    padding: 12px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(237, 236, 252, 0.72));
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.09);
    overflow: hidden;
}

html.pv-redesign .pv-rest-intro__side-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

html.pv-redesign .pv-rest-intro__cards {
    display: grid;
    gap: 16px;
}

html.pv-redesign .pv-rest-intro__card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(30, 46, 85, 0.08);
    border-radius: 20px;
    padding: clamp(22px, 2.8vw, 28px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

html.pv-redesign .pv-rest-intro__card:hover {
    transform: translateX(6px);
    border-color: rgba(5, 169, 128, 0.2);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.09);
}

html.pv-redesign .pv-rest-intro__card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(214, 77, 48, 0.1), rgba(5, 169, 128, 0.1));
    border: 1px solid rgba(30, 46, 85, 0.06);
    color: var(--pv-orange);
    font-size: 18px;
}

html.pv-redesign .pv-rest-intro__card h3 {
    margin: 0 0 10px;
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    font-weight: 700;
    color: var(--pv-navy);
    line-height: 1.3;
}

html.pv-redesign .pv-rest-intro__card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--pv-text-muted);
}

html.pv-redesign .pv-rest-features.re-report {
    position: relative;
    padding: clamp(80px, 9vw, 110px) 0 clamp(90px, 10vw, 120px);
    background: linear-gradient(180deg, var(--pv-surface) 0%, #ffffff 55%, #f7f9fa 100%);
    overflow: hidden;
}

html.pv-redesign .pv-rest-features__list {
    display: grid;
    gap: clamp(48px, 6vw, 72px);
}

html.pv-redesign .pv-rest-features__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
}

html.pv-redesign .pv-rest-features__row--flip .pv-rest-features__content {
    order: 2;
}

html.pv-redesign .pv-rest-features__row--flip .pv-rest-features__visual {
    order: 1;
}

html.pv-redesign .pv-rest-features__title {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--pv-navy);
}

html.pv-redesign .pv-rest-features__content p {
    margin: 0 0 18px;
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.75;
    color: var(--pv-text-muted);
    max-width: 520px;
}

html.pv-redesign .pv-rest-features__chips {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

html.pv-redesign .pv-rest-features__chips li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 !important;
    padding: 8px 12px;
    border-radius: 100px;
    background: rgba(30, 46, 85, 0.04);
    border: 1px solid rgba(30, 46, 85, 0.07);
    font-size: 12px;
    font-weight: 600;
    color: var(--pv-navy);
}

html.pv-redesign .pv-rest-features__chips i {
    color: var(--pv-orange);
    font-size: 11px;
}

html.pv-redesign .pv-rest-features__points {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 8px;
}

html.pv-redesign .pv-rest-features__points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--pv-navy);
}

html.pv-redesign .pv-rest-features__points i {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--pv-orange);
    font-size: 12px;
}

html.pv-redesign .pv-rest-features__visual {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
}

html.pv-redesign .pv-rest-features__visual-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.16) 0%, transparent 72%);
    filter: blur(8px);
}

html.pv-redesign .pv-rest-features__visual-ring {
    position: absolute;
    width: 88%;
    height: 88%;
    border-radius: 50%;
    border: 1px dashed rgba(30, 46, 85, 0.12);
    animation: pv-rest-ring 24s linear infinite;
}

@keyframes pv-rest-ring {
    to { transform: rotate(360deg); }
}

html.pv-redesign .pv-rest-features__accent {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    opacity: 0.85;
    z-index: 0;
}

html.pv-redesign .pv-rest-features__accent--green {
    top: 8%;
    right: 10%;
    background: linear-gradient(135deg, rgba(5, 169, 128, 0.22), rgba(5, 169, 128, 0.08));
}

html.pv-redesign .pv-rest-features__accent--gold {
    bottom: 10%;
    left: 8%;
    background: linear-gradient(135deg, rgba(214, 77, 48, 0.2), rgba(232, 120, 58, 0.08));
}

html.pv-redesign .pv-rest-features__frame {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(237, 236, 252, 0.72));
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

html.pv-redesign .pv-rest-features__frame-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

html.pv-redesign .pv-rest-features__frame--mirror .pv-rest-features__frame-media {
    transform: scaleX(-1);
}

html.pv-redesign .pv-rest-features__frame img {
    display: block;
    width: 100%;
    height: auto;
}

html.pv-redesign .pv-rest-features__badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-size: 12px;
    font-weight: 600;
    color: var(--pv-navy);
}

html.pv-redesign .pv-rest-features__badge i {
    color: var(--pv-orange);
    font-size: 13px;
}

html.pv-redesign .pv-rest-features__row--flip .pv-rest-features__badge {
    right: auto;
    left: 18px;
}

@media (max-width: 991px) {
    html.pv-redesign .pv-rest-intro__showcase {
        min-height: 0;
    }

    html.pv-redesign .pv-rest-intro__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    html.pv-redesign .pv-rest-intro__side-visual {
        min-height: 0;
    }

    html.pv-redesign .pv-rest-features__row,
    html.pv-redesign .pv-rest-features__row--flip {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    html.pv-redesign .pv-rest-features__row--flip .pv-rest-features__content,
    html.pv-redesign .pv-rest-features__row--flip .pv-rest-features__visual {
        order: unset;
    }

    html.pv-redesign .pv-rest-features__content p {
        max-width: none;
    }

    html.pv-redesign .pv-rest-features__visual {
        min-height: 0;
    }
}

/* --- POS Systems page --- */
html.pv-redesign .pv-pos-intro {
    position: relative;
    padding: clamp(80px, 9vw, 110px) 0 clamp(70px, 8vw, 90px);
    background: linear-gradient(180deg, #ffffff 0%, var(--pv-surface) 55%, #ffffff 100%);
    overflow: hidden;
}

html.pv-redesign .pv-pos__bg,
html.pv-redesign .pv-pos-features__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

html.pv-redesign .pv-pos__bg-grid,
html.pv-redesign .pv-pos-features__bg-grid {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -42%;
    height: 58%;
    background-image:
        linear-gradient(rgba(30, 46, 85, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 46, 85, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(900px) rotateX(76deg);
    transform-origin: center top;
    opacity: 0.4;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

html.pv-redesign .pv-pos__bg-orb,
html.pv-redesign .pv-pos-features__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.36;
}

html.pv-redesign .pv-pos__bg-orb--1,
html.pv-redesign .pv-pos-features__bg-orb--1 {
    width: 280px;
    height: 280px;
    top: 10%;
    left: -4%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.14) 0%, transparent 70%);
}

html.pv-redesign .pv-pos__bg-orb--2,
html.pv-redesign .pv-pos-features__bg-orb--2 {
    width: 260px;
    height: 260px;
    bottom: 8%;
    right: -2%;
    background: radial-gradient(circle, rgba(214, 77, 48, 0.12) 0%, transparent 70%);
}

html.pv-redesign .pv-pos__bg-shine,
html.pv-redesign .pv-pos-features__bg-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.38) 48%, transparent 66%);
    transform: translateX(-120%);
}

html.pv-redesign .pv-pos-intro .container,
html.pv-redesign .pv-pos-features .container {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-pos-intro .pv-section-head {
    margin-bottom: clamp(40px, 5vw, 56px);
}

html.pv-redesign .pv-pos-intro__showcase {
    position: relative;
    max-width: 920px;
    margin: 0 auto clamp(44px, 5vw, 60px);
    display: grid;
    place-items: center;
    min-height: 320px;
}

html.pv-redesign .pv-pos-intro__visual-glow {
    position: absolute;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 169, 128, 0.16) 0%, transparent 72%);
    filter: blur(10px);
}

html.pv-redesign .pv-pos-intro__frame {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 14px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.92));
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 28px 64px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

html.pv-redesign .pv-pos-intro__frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

html.pv-redesign .pv-pos-intro__frame-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
    transform: translateX(-130%);
    pointer-events: none;
}

html.pv-redesign .pv-pos-intro__caption {
    position: absolute;
    right: clamp(24px, 8vw, 72px);
    top: clamp(40px, 12vw, 120px);
    z-index: 2;
    text-align: left;
    color: #fff;
    max-width: 280px;
}

html.pv-redesign .pv-pos-intro__caption span {
    display: block;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    opacity: 0.92;
}

html.pv-redesign .pv-pos-intro__caption strong {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-pos-intro__caption strong::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 62%;
    height: 14px;
    background: #0c6a6a;
    z-index: -1;
}

html.pv-redesign .pv-pos-intro__badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(30, 46, 85, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    font-size: 13px;
    font-weight: 600;
    color: var(--pv-navy);
}

html.pv-redesign .pv-pos-intro__badge i {
    color: var(--pv-green);
}

html.pv-redesign .pv-pos-intro__highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
    max-width: 1080px;
    margin-inline: auto;
}

html.pv-redesign .pv-pos-intro__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0 !important;
    padding: clamp(18px, 2.4vw, 24px);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(30, 46, 85, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

html.pv-redesign .pv-pos-intro__highlights li:hover {
    transform: translateY(-4px);
    border-color: rgba(5, 169, 128, 0.2);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.09);
}

html.pv-redesign .pv-pos-intro__highlight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(214, 77, 48, 0.1), rgba(5, 169, 128, 0.1));
    color: var(--pv-orange);
    font-size: 16px;
}

html.pv-redesign .pv-pos-intro__highlights strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 700;
    color: var(--pv-navy);
}

html.pv-redesign .pv-pos-intro__highlights span {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: var(--pv-muted);
}

html.pv-redesign .pv-pos-features {
    position: relative;
    padding: clamp(80px, 9vw, 110px) 0 clamp(90px, 10vw, 120px);
    overflow: hidden;
    isolation: isolate;
}

html.pv-redesign .pv-pos-features__bg-photo {
    position: absolute;
    inset: 0;
    background: url("../images/pos-payment.webp") center / cover no-repeat;
    transform: scale(1.04);
}

html.pv-redesign .pv-pos-features__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 15, 26, 0.94) 0%, rgba(10, 15, 26, 0.86) 42%, rgba(10, 15, 26, 0.58) 100%),
        radial-gradient(ellipse 55% 45% at 82% 58%, rgba(214, 77, 48, 0.16) 0%, transparent 68%),
        radial-gradient(ellipse 40% 35% at 18% 78%, rgba(5, 169, 128, 0.12) 0%, transparent 70%);
}

html.pv-redesign .pv-pos-features .pv-section-head {
    margin-bottom: clamp(40px, 5vw, 56px);
}

html.pv-redesign .pv-pos-features .pv-pat__cards {
    margin-bottom: clamp(32px, 4vw, 44px);
}

html.pv-redesign .pv-pos-features .pv-pat__card:nth-child(4) .pv-pat__card-accent {
    background: var(--pv-teal);
}

html.pv-redesign .pv-pos-features .pv-pat__card:nth-child(5) .pv-pat__card-accent {
    background: linear-gradient(135deg, var(--pv-green), var(--pv-teal));
}

html.pv-redesign .pv-pos-features .pv-pat__card:nth-child(6) .pv-pat__card-accent {
    background: var(--pv-gold);
}

@media (max-width: 991px) {
    html.pv-redesign .pv-pos-intro__showcase {
        min-height: 0;
    }

    html.pv-redesign .pv-pos-intro__caption {
        position: static;
        max-width: none;
        margin-top: 18px;
        color: var(--pv-navy);
        text-align: center;
    }

    html.pv-redesign .pv-pos-intro__caption strong::before {
        display: none;
    }

    html.pv-redesign .pv-pos-intro__badge {
        position: static;
        margin: 16px auto 0;
        width: fit-content;
    }

    html.pv-redesign .pv-pos-intro__highlights {
        grid-template-columns: 1fr;
    }

    html.pv-redesign .pv-pos-features .pv-pat__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    html.pv-redesign .pv-pos-features .pv-pat__cards {
        grid-template-columns: 1fr;
    }
}

/* --- Premium site responsive (complete) --- */
@media (max-width: 991px) {
    html.pv-redesign section {
        padding: clamp(56px, 8vw, 80px) 0;
    }

    html.pv-redesign .pv-hero__layout {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    html.pv-redesign .pv-hero__content {
        align-items: center;
    }

    html.pv-redesign .pv-hero__text,
    html.pv-redesign .pv-hero__title {
        margin-left: auto;
        margin-right: auto;
    }

    html.pv-redesign .pv-hero__actions,
    html.pv-redesign .pv-hero__stats {
        justify-content: center;
    }

    html.pv-redesign .pv-hero__showcase {
        margin-inline: auto;
        max-width: min(400px, 100%);
    }

    html.pv-redesign.pv-hero-ready .pv-hero__figure-wrap,
    html.pv-redesign.pv-hero-ready .pv-hero__figure-reveal,
    html.pv-redesign.pv-hero-ready .pv-hero__figure,
    html.pv-redesign.pv-hero-ready .pv-hero__figure-3d {
        opacity: 1 !important;
        visibility: visible !important;
    }

    html.pv-redesign .pv-dt__row,
    html.pv-redesign .pv-dt__row--flip,
    html.pv-redesign .pv-eco__row,
    html.pv-redesign .pv-eco__row--flip,
    html.pv-redesign .pv-pat-showcase__row,
    html.pv-redesign .pv-pat-showcase__row--flip,
    html.pv-redesign .pv-rest-features__row,
    html.pv-redesign .pv-rest-features__row--flip {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    html.pv-redesign .pv-dt__row--flip .pv-dt__device,
    html.pv-redesign .pv-dt__row--flip .pv-dt__details,
    html.pv-redesign .pv-eco__row--flip .pv-eco__content,
    html.pv-redesign .pv-eco__row--flip .pv-eco__visual,
    html.pv-redesign .pv-pat-showcase__row--flip .pv-pat-showcase__content,
    html.pv-redesign .pv-pat-showcase__row--flip .pv-pat-showcase__visual,
    html.pv-redesign .pv-rest-features__row--flip .pv-rest-features__content,
    html.pv-redesign .pv-rest-features__row--flip .pv-rest-features__visual {
        order: unset;
    }

    html.pv-redesign .pv-pat__cards {
        grid-template-columns: 1fr;
    }

    html.pv-redesign .pv-eco-why__grid,
    html.pv-redesign .pv-contact__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    html.pv-redesign .pv-referral-partnership__grid,
    html.pv-redesign .pv-referral-bonus__grid,
    html.pv-redesign .pv-referral-iso__grid {
        grid-template-columns: 1fr;
    }

    html.pv-redesign .pv-partners__track {
        gap: 28px;
    }

    html.pv-redesign .pv-testimonial-slider__track {
        grid-auto-columns: minmax(280px, 88vw);
    }

    html.pv-redesign .pv-about-intro__grid,
    html.pv-redesign .pv-about-world__grid,
    html.pv-redesign .pv-zigzag__row,
    html.pv-redesign .pv-zigzag__row--flip {
        grid-template-columns: 1fr;
    }

    html.pv-redesign .pv-zigzag__row--flip .pv-zigzag__content,
    html.pv-redesign .pv-zigzag__row--flip .pv-zigzag__visual {
        order: unset;
    }
}

@media (max-width: 767px) {
    html.pv-redesign {
        --pv-header-h: 64px;
    }

    html.pv-redesign header.pv-header .top {
        display: none;
    }

    html.pv-redesign header.pv-header .pv-mobile-nav {
        width: 100%;
        border-left: none;
    }

    html.pv-redesign .pv-hero {
        padding: 118px 0 72px;
    }

    html.pv-redesign .pv-hero__title {
        font-size: clamp(2rem, 8vw, 2.6rem) !important;
    }

    html.pv-redesign .pv-hero__stat strong {
        font-size: 1.35rem;
    }

    html.pv-redesign .pv-section-title {
        font-size: clamp(1.55rem, 6vw, 2rem) !important;
    }

    html.pv-redesign .pv-cta-band__inner {
        text-align: center;
        padding: 26px 16px 24px;
        border-radius: 16px;
    }

    html.pv-redesign .pv-cta-band__label {
        font-size: 11px;
        margin-bottom: 10px;
    }

    html.pv-redesign .pv-cta-band__title {
        font-size: clamp(1.28rem, 6.2vw, 1.65rem) !important;
    }

    html.pv-redesign .pv-cta-band__actions {
        margin-top: 24px;
    }

    html.pv-redesign .pv-cta-band__phone {
        border-radius: 14px;
    }

    html.pv-redesign .pv-cta-band__phone-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    html.pv-redesign .pv-cta-band__phone-copy small {
        font-size: 10px;
    }

    html.pv-redesign .pv-cta-band__trust {
        margin-top: 18px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    html.pv-redesign .pv-cta-band__trust li {
        max-width: none;
        font-size: 12px;
    }

    html.pv-redesign .pv-footer__main {
        row-gap: 28px;
    }

    html.pv-redesign .pv-footer__col {
        margin-bottom: 8px;
    }

    html.pv-redesign .pv-demo-cta__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    html.pv-redesign .pv-demo-cta__visual {
        order: -1;
        margin-bottom: 8px;
    }

    html.pv-redesign .pv-demo-cta__btn--inline {
        display: none;
    }

    html.pv-redesign .pv-demo-cta__btn--mobile {
        display: inline-flex;
    }
}

@media (max-width: 575px) {
    html.pv-redesign .container,
    html.pv-redesign .container-fluid {
        padding-left: 14px;
        padding-right: 14px;
    }

    html.pv-redesign .pv-hero__features {
        flex-direction: column;
        align-items: stretch;
    }

    html.pv-redesign .pv-hero__feature {
        width: 100%;
        justify-content: center;
    }

    html.pv-redesign .pv-hero__metric {
        transform: scale(0.92);
        padding: 10px 12px;
        gap: 10px;
    }

    html.pv-redesign .pv-hero__metric-body strong {
        font-size: 14px;
    }

    html.pv-redesign .pv-hero__metric-body span {
        font-size: 11px;
    }

    html.pv-redesign .pv-hero__figure-wrap {
        max-width: min(300px, 86vw);
        width: min(100%, 300px);
    }

    html.pv-redesign .pv-hero__showcase {
        padding-bottom: 40px;
    }

    html.pv-redesign .pv-pat__card-top h3 {
        max-width: 100%;
    }

    html.pv-redesign .pv-dt__device-visual,
    html.pv-redesign .pv-pat-showcase__visual,
    html.pv-redesign .pv-eco__visual {
        min-height: 0;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    html.pv-redesign .pv-cta-band__trust {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
        border-top: none;
        padding-top: 0;
    }

    html.pv-redesign .pv-cta-band__trust li {
        width: auto;
        max-width: none;
    }
}

/* Legacy pages (privacy-policy etc.) */
@media (max-width: 991px) {
    html.pv-redesign .our-banner {
        text-align: center;
        height: auto;
        margin-top: 0;
        padding: calc(var(--pv-header-h) + 32px) 0 40px;
    }

    html.pv-redesign .our-banner h1 {
        font-size: clamp(1.75rem, 6vw, 2.35rem);
        line-height: 1.2;
    }

    html.pv-redesign .our-banner h1 br,
    html.pv-redesign .our-banner p br,
    html.pv-redesign h2 br {
        display: none;
    }

    html.pv-redesign .our-banner p {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    html.pv-redesign .growing .img h4 {
        position: static;
        margin-top: 16px;
        color: var(--pv-navy);
        text-align: center;
    }

    html.pv-redesign .growing .img h4::before {
        display: none;
    }

    html.pv-redesign .easy-payment .box {
        margin-bottom: 18px;
    }

    html.pv-redesign .content-page {
        padding: 40px 0;
    }

    html.pv-redesign .content-page h5,
    html.pv-redesign .content-page .sub-heading {
        font-size: 1rem;
    }

    html.pv-redesign .cta {
        text-align: center;
        padding: 48px 0;
    }

    html.pv-redesign .cta div a.tel {
        display: block;
        font-size: clamp(1.35rem, 6vw, 2rem);
        margin: 12px 0;
    }

    html.pv-redesign .testimonial .item {
        height: auto;
        min-height: 160px;
    }
}

/* Popup form */
@media (max-width: 991px) {
    html.pv-redesign #popupform {
        max-width: 100%;
    }

    html.pv-redesign .popup-bann {
        display: none;
    }

    html.pv-redesign .popup-content {
        max-width: 100%;
        margin-left: 0;
        padding: 24px 20px;
    }

    html.pv-redesign .popup-content h2 {
        font-size: 1.35rem;
        padding-right: 0;
        text-align: center;
    }

    html.pv-redesign .popup-content h2 + p {
        text-align: center;
    }

    html.pv-redesign .popup-content .row > [class*="col-"] {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    html.pv-redesign .popup-content {
        padding: 20px 16px;
    }

    html.pv-redesign .popup-content .btn-orange {
        width: 100%;
    }
}

html.pv-redesign body.pv-page-portfolio .pv-section-head,
html.pv-redesign body.pv-page-portfolio .pv-page-hero__content,
html.pv-redesign body.pv-page-portfolio .pv-page-hero__breadcrumb {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
    html.pv-redesign .pv-portfolio-card.is-reveal {
        animation: none;
    }
}

/* ——— Portfolio page ——— */
html.pv-redesign .pv-portfolio {
    position: relative;
    padding: clamp(64px, 8vw, 110px) 0 clamp(72px, 9vw, 120px);
    overflow: visible;
}

html.pv-redesign .pv-portfolio__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

html.pv-redesign .pv-portfolio__bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(5, 169, 128, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 169, 128, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}

html.pv-redesign .pv-portfolio__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

html.pv-redesign .pv-portfolio__bg-orb--1 {
    width: 320px;
    height: 320px;
    top: 8%;
    right: -8%;
    background: rgba(214, 77, 48, 0.22);
}

html.pv-redesign .pv-portfolio__bg-orb--2 {
    width: 280px;
    height: 280px;
    bottom: 5%;
    left: -6%;
    background: rgba(5, 169, 128, 0.25);
}

html.pv-redesign .pv-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(8px, 0.9vw, 12px);
    margin-top: clamp(36px, 4vw, 52px);
    perspective: 1200px;
}

html.pv-redesign .pv-portfolio__intro {
    position: relative;
    z-index: 1;
}

html.pv-redesign .pv-portfolio__intro-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(520px, 90%);
    height: 140px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(5, 169, 128, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

html.pv-redesign .pv-portfolio-card {
    position: relative;
    transform-style: preserve-3d;
}

html.pv-redesign .pv-portfolio-card.is-reveal .pv-portfolio-card__trigger {
    animation: pvPortfolioIdle 6s ease-in-out infinite;
    animation-delay: calc(var(--pv-stagger, 0) * 0.35s);
}

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

@keyframes pvPortfolioTileIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.88);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

html.pv-redesign .pv-portfolio-card.is-reveal:not(.gsap-revealed) {
    animation: pvPortfolioTileIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--pv-stagger, 0) * 55ms);
}

html.pv-redesign .pv-portfolio-card__trigger {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 18px;
    transform: translateZ(0);
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s ease,
        filter 0.45s ease;
    box-shadow:
        0 2px 4px rgba(10, 15, 26, 0.08),
        0 12px 28px rgba(10, 15, 26, 0.14),
        0 28px 56px rgba(10, 15, 26, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
    filter: drop-shadow(0 10px 18px rgba(10, 15, 26, 0.08));
}

html.pv-redesign .pv-portfolio-card__trigger:hover,
html.pv-redesign .pv-portfolio-card__trigger:focus-visible {
    animation: none;
    transform: translateY(-10px) scale(1.015);
    box-shadow:
        0 4px 8px rgba(10, 15, 26, 0.12),
        0 20px 40px rgba(10, 15, 26, 0.22),
        0 36px 72px rgba(10, 15, 26, 0.18),
        0 0 0 1px rgba(5, 169, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 16px 32px rgba(5, 169, 128, 0.15));
    outline: none;
}

html.pv-redesign .pv-portfolio-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, #e8edf5 0%, #d5deea 100%);
    isolation: isolate;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.35),
        inset 0 -24px 48px rgba(10, 15, 26, 0.12);
}

html.pv-redesign .pv-portfolio-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    box-shadow: inset 0 0 80px rgba(10, 15, 26, 0.08);
    transition: box-shadow 0.45s ease;
}

html.pv-redesign .pv-portfolio-card__trigger:hover .pv-portfolio-card__media::after,
html.pv-redesign .pv-portfolio-card__trigger:focus-visible .pv-portfolio-card__media::after {
    box-shadow: inset 0 0 120px rgba(10, 15, 26, 0.42);
}

html.pv-redesign .pv-portfolio-card__halo {
    position: absolute;
    inset: -20%;
    z-index: 0;
    background: radial-gradient(circle at 50% 80%, rgba(5, 169, 128, 0.35), transparent 62%);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.5s ease, transform 0.55s ease;
    pointer-events: none;
}

html.pv-redesign .pv-portfolio-card__trigger:hover .pv-portfolio-card__halo,
html.pv-redesign .pv-portfolio-card__trigger:focus-visible .pv-portfolio-card__halo {
    opacity: 0.85;
    transform: scale(1.05);
}

html.pv-redesign .pv-portfolio-card__lazy-loader {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.05) 8%, rgba(5, 169, 128, 0.1) 18%, rgba(255, 255, 255, 0.05) 33%);
    background-size: 200% 100%;
    animation: pvPortfolioShimmer 1.2s ease-in-out infinite;
    pointer-events: none;
}

html.pv-redesign .pv-portfolio-card__lazy-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
}

@keyframes pvPortfolioShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

html.pv-redesign .pv-portfolio-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
}

html.pv-redesign .pv-portfolio-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 26, 0.08) 0%, rgba(10, 15, 26, 0.02) 45%, rgba(10, 15, 26, 0.18) 100%);
    opacity: 0.35;
    transition: opacity 0.45s ease, background 0.45s ease;
    z-index: 2;
    pointer-events: none;
}

html.pv-redesign .pv-portfolio-card__trigger:hover .pv-portfolio-card__shade,
html.pv-redesign .pv-portfolio-card__trigger:focus-visible .pv-portfolio-card__shade {
    opacity: 1;
    background: linear-gradient(180deg, rgba(10, 15, 26, 0.35) 0%, rgba(10, 15, 26, 0.45) 55%, rgba(10, 15, 26, 0.62) 100%);
}

html.pv-redesign .pv-portfolio-card__trigger:hover .pv-portfolio-card__media img,
html.pv-redesign .pv-portfolio-card__trigger:focus-visible .pv-portfolio-card__media img {
    transform: scale(1.12);
    filter: brightness(0.78) saturate(1.05) contrast(1.05);
}

html.pv-redesign .pv-portfolio-card__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 62px;
    height: 62px;
    margin: -31px 0 0 -31px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: scale(0.65) rotate(-12deg);
    transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

html.pv-redesign .pv-portfolio-card__trigger:hover .pv-portfolio-card__icon,
html.pv-redesign .pv-portfolio-card__trigger:focus-visible .pv-portfolio-card__icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: pvPortfolioIconPulse 1.2s ease-in-out infinite;
}

@keyframes pvPortfolioIconPulse {
    0%, 100% { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(255, 255, 255, 0.35); }
    50% { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(255, 255, 255, 0); }
}

html.pv-redesign .pv-portfolio-card__ripple {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    margin: -29px 0 0 -29px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
}

html.pv-redesign .pv-portfolio-card__trigger:hover .pv-portfolio-card__ripple,
html.pv-redesign .pv-portfolio-card__trigger:focus-visible .pv-portfolio-card__ripple {
    animation: pvPortfolioRipple 1.1s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes pvPortfolioRipple {
    0% {
        opacity: 0.65;
        transform: scale(0.8);
    }
    100% {
        opacity: 0;
        transform: scale(1.85);
    }
}

html.pv-redesign .pv-portfolio-card__sheen {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.34) 50%, transparent 58%);
    transform: translateX(-130%);
    pointer-events: none;
}

html.pv-redesign .pv-portfolio-card__trigger:hover .pv-portfolio-card__sheen,
html.pv-redesign .pv-portfolio-card__trigger:focus-visible .pv-portfolio-card__sheen {
    animation: pvPortfolioSheen 0.85s ease forwards;
}

@keyframes pvPortfolioSheen {
    to { transform: translateX(130%); }
}

@media (prefers-reduced-motion: reduce) {
    html.pv-redesign .pv-portfolio-card.is-reveal,
    html.pv-redesign .pv-portfolio-card.is-reveal .pv-portfolio-card__trigger {
        animation: none !important;
    }

    html.pv-redesign .pv-portfolio-card.is-reveal:not(.gsap-revealed) {
        animation: none;
        opacity: 1;
        transform: none;
    }

    html.pv-redesign .pv-portfolio-card__ripple,
    html.pv-redesign .pv-portfolio-card__sheen,
    html.pv-redesign .pv-portfolio-card__icon {
        animation: none !important;
    }
}

html.pv-redesign .pv-portfolio__empty {
    text-align: center;
    color: rgba(10, 15, 26, 0.65);
    margin-top: 32px;
}

html.pv-redesign .pv-portfolio__load {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 16px 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

html.pv-redesign .pv-portfolio__load.is-active {
    opacity: 1;
    transform: translateY(0);
}

html.pv-redesign .pv-portfolio__load[hidden] {
    display: none !important;
}

html.pv-redesign .pv-portfolio__load-ring {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(5, 169, 128, 0.2);
    border-top-color: #05A980;
    border-right-color: #d64d30;
    animation: pvPortfolioSpin 0.85s linear infinite;
    box-shadow: 0 0 24px rgba(5, 169, 128, 0.25);
}

html.pv-redesign .pv-portfolio__load-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(10, 15, 26, 0.72);
    letter-spacing: 0.02em;
}

html.pv-redesign .pv-portfolio__sentinel {
    width: 100%;
    height: 2px;
    pointer-events: none;
}

html.pv-redesign .pv-portfolio__sentinel.is-done {
    display: none;
}

html.pv-redesign .pv-portfolio-viewer {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 3vw, 32px);
}

html.pv-redesign .pv-portfolio-viewer[hidden] {
    display: none !important;
}

html.pv-redesign .pv-portfolio-viewer.is-open {
    animation: pvPortfolioFadeIn 0.35s ease;
}

html.pv-redesign .pv-portfolio-viewer.is-closing {
    animation: pvPortfolioFadeOut 0.28s ease forwards;
}

@keyframes pvPortfolioFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pvPortfolioFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

html.pv-redesign .pv-portfolio-viewer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 10, 18, 0.88);
    backdrop-filter: blur(12px);
}

html.pv-redesign .pv-portfolio-viewer__panel {
    position: relative;
    width: min(1180px, 100%);
    max-height: calc(100vh - 24px);
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(18, 26, 42, 0.98) 0%, rgba(10, 15, 26, 0.98) 100%);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transform: scale(0.94);
    animation: pvPortfolioPanelIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.pv-redesign .pv-portfolio-viewer.is-closing .pv-portfolio-viewer__panel {
    animation: pvPortfolioPanelOut 0.28s ease forwards;
}

@keyframes pvPortfolioPanelIn {
    to { transform: scale(1); }
}

@keyframes pvPortfolioPanelOut {
    from { transform: scale(1); }
    to { transform: scale(0.94); opacity: 0.5; }
}

html.pv-redesign .pv-portfolio-viewer:fullscreen .pv-portfolio-viewer__panel {
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
}

html.pv-redesign .pv-portfolio-viewer__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

html.pv-redesign .pv-portfolio-viewer__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #05A980;
    margin-bottom: 4px;
}

html.pv-redesign .pv-portfolio-viewer__title {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #fff;
    font-weight: 600;
}

html.pv-redesign .pv-portfolio-viewer__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

html.pv-redesign .pv-portfolio-viewer__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

html.pv-redesign .pv-portfolio-viewer__btn:hover {
    background: rgba(5, 169, 128, 0.2);
    border-color: rgba(5, 169, 128, 0.45);
}

html.pv-redesign .pv-portfolio-viewer__btn.is-active {
    background: linear-gradient(135deg, rgba(214, 77, 48, 0.35), rgba(5, 169, 128, 0.35));
    border-color: rgba(5, 169, 128, 0.55);
}

html.pv-redesign .pv-portfolio-viewer__btn--close {
    padding: 10px 12px;
}

html.pv-redesign .pv-portfolio-viewer__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(58vh, 520px);
    padding: 12px 56px;
}

html.pv-redesign .pv-portfolio-viewer__media {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: min(58vh, 520px);
}

html.pv-redesign .pv-portfolio-viewer:fullscreen .pv-portfolio-viewer__stage,
html.pv-redesign .pv-portfolio-viewer:fullscreen .pv-portfolio-viewer__media {
    min-height: 0;
    flex: 1;
    max-height: none;
}

html.pv-redesign .pv-portfolio-viewer__media img {
    max-width: 100%;
    max-height: min(58vh, 520px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

html.pv-redesign .pv-portfolio-viewer__media.is-loading img {
    opacity: 0.35;
}

html.pv-redesign .pv-portfolio-viewer__media.is-changing img {
    transform: scale(0.97);
    opacity: 0.6;
}

html.pv-redesign .pv-portfolio-viewer:fullscreen .pv-portfolio-viewer__media img {
    max-height: calc(100vh - 200px);
}

html.pv-redesign .pv-portfolio-viewer__loader {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: #05A980;
    border-radius: 50%;
    animation: pvPortfolioSpin 0.8s linear infinite;
    opacity: 0;
    pointer-events: none;
}

html.pv-redesign .pv-portfolio-viewer__media.is-loading .pv-portfolio-viewer__loader {
    opacity: 1;
}

@keyframes pvPortfolioSpin {
    to { transform: rotate(360deg); }
}

html.pv-redesign .pv-portfolio-viewer__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: background 0.25s ease, transform 0.2s ease;
}

html.pv-redesign .pv-portfolio-viewer__nav:hover {
    background: linear-gradient(135deg, #d64d30, #05A980);
    transform: translateY(-50%) scale(1.06);
}

html.pv-redesign .pv-portfolio-viewer__nav--prev {
    left: 12px;
}

html.pv-redesign .pv-portfolio-viewer__nav--next {
    right: 12px;
}

html.pv-redesign .pv-portfolio-viewer__footer {
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

html.pv-redesign .pv-portfolio-viewer__counter {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

html.pv-redesign .pv-portfolio-viewer__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

html.pv-redesign .pv-portfolio-viewer__thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 52px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.55;
    scroll-snap-align: start;
    transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

html.pv-redesign .pv-portfolio-viewer__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

html.pv-redesign .pv-portfolio-viewer__thumb:hover,
html.pv-redesign .pv-portfolio-viewer__thumb.is-active {
    opacity: 1;
    border-color: #05A980;
    transform: scale(1.04);
}

html.pv-redesign body.pv-portfolio-open {
    overflow: hidden;
}

html.pv-redesign .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 991px) {
    html.pv-redesign .pv-portfolio__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    html.pv-redesign .pv-portfolio-viewer__btn-text {
        display: none;
    }
}

@media (max-width: 575px) {
    html.pv-redesign .pv-portfolio__grid {
        grid-template-columns: 1fr;
    }

    html.pv-redesign .pv-portfolio-viewer__stage {
        padding: 8px 44px;
        min-height: 42vh;
    }

    html.pv-redesign .pv-portfolio-viewer__toolbar {
        flex-wrap: wrap;
    }
}
