.evcb-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Inter, Helvetica, Arial, sans-serif;
    pointer-events: none
}

.evcb-wrap *,
.evcb-wrap *::before,
.evcb-wrap *::after {
    box-sizing: border-box
}

.evcb-panel {
    width: 280px;
    transform-origin: bottom right;
    transform: translateY(8px) scale(.96);
    opacity: 0;
    pointer-events: none;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .35s cubic-bezier(.22, 1, .36, 1);
    background: #f4f7fb;
    border: 1px solid #dce6f5;
    border-radius: 22px;
    padding: 10px;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .8), 0 30px 60px -28px rgb(20 40 90 / .22), 0 8px 24px -12px rgb(20 40 90 / .12)
}

.evcb-wrap.is-open .evcb-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto
}

.evcb-card {
    position: relative;
    background: #fff;
    border: 1px solid #e3eaf4;
    border-radius: 14px;
    padding: 18px 18px 16px;
    text-align: left
}

.evcb-close {
    all: unset;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9aa3b2;
    cursor: pointer;
    transition: color .2s, background .2s, transform .3s cubic-bezier(.22, 1, .36, 1)
}

.evcb-close:hover {
    color: #0b1220;
    background: #f1f4f9;
    transform: rotate(90deg)
}

.evcb-close svg {
    width: 12px;
    height: 12px
}

.evcb-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #0b1220;
    margin: 0 0 4px;
    line-height: 1.25;
    padding-right: 24px
}

.evcb-desc {
    font-size: 13px;
    color: #5b6577;
    line-height: 1.5;
    margin: 0 0 14px
}

.evcb-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 14px;
    border-radius: 11px;
    background: linear-gradient(180deg, #4d8bff 0%, #1e54ff 50%, #0f3cdc 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -.01em;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .45), inset 0 -2px 0 rgb(0 0 0 / .18), 0 4px 12px -2px rgb(20 60 220 / .45), 0 1px 2px rgb(15 23 42 / .08);
    transition: transform .25s, box-shadow .25s
}

.evcb-cta>* {
    position: relative;
    z-index: 2
}

.evcb-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgb(255 255 255 / .5) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: evcb-shine 2.6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit
}

@keyframes evcb-shine {
    0% {
        left: -40%;
        opacity: 0
    }

    20% {
        opacity: 1
    }

    60% {
        left: 120%;
        opacity: 1
    }

    100% {
        left: 120%;
        opacity: 0
    }
}

.evcb-cta:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .5), inset 0 -2px 0 rgb(0 0 0 / .18), 0 6px 16px -2px rgb(20 60 220 / .55), 0 2px 4px rgb(15 23 42 / .1)
}

.evcb-cta:active {
    transform: translateY(0)
}

.evcb-arrow {
    font-size: 14px;
    display: inline-block;
    font-weight: 400;
    transition: transform .25s
}

.evcb-cta:hover .evcb-arrow {
    transform: translateX(3px)
}

.evcb-fab {
    all: unset;
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #dce6f5;
    color: #1d4ed8;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .9), 0 12px 28px -8px rgb(20 60 220 / .28), 0 4px 10px -4px rgb(15 23 42 / .12);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s, border-color .35s;
    pointer-events: auto
}

.evcb-fab:hover {
    transform: translateY(-2px);
    border-color: #cfd9ff;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .9), 0 18px 36px -8px rgb(20 60 220 / .38), 0 6px 14px -4px rgb(15 23 42 / .15)
}

.evcb-fab:focus-visible {
    outline: 2px solid #1d4ed8;
    outline-offset: 3px
}

.evcb-icon {
    position: relative;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.evcb-icon svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .3s
}

.evcb-icon .ic-chat {
    opacity: 1;
    transform: rotate(0) scale(1)
}

.evcb-icon .ic-close {
    opacity: 0;
    transform: rotate(-45deg) scale(.6)
}

.evcb-wrap.is-open .evcb-icon .ic-chat {
    opacity: 0;
    transform: rotate(45deg) scale(.6)
}

.evcb-wrap.is-open .evcb-icon .ic-close {
    opacity: 1;
    transform: rotate(0) scale(1)
}

@media(max-width:480px) {
    .evcb-wrap {
        right: 16px;
        bottom: 16px;
        gap: 10px
    }

    .evcb-fab {
        width: 50px;
        height: 50px
    }

    .evcb-icon {
        width: 20px;
        height: 20px
    }

    .evcb-panel {
        width: min(280px, calc(100vw - 32px))
    }
}

@media(prefers-reduced-motion:reduce) {
    .evcb-cta::before {
        animation: none
    }

    .evcb-panel,
    .evcb-fab,
    .evcb-icon svg,
    .evcb-close {
        transition: none
    }
}

.evfx-wrap {
    background: #fff;
    padding: 48px 22px 64px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #0f172a;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden
}

.evfx-wrap *,
.evfx-wrap *::before,
.evfx-wrap *::after {
    box-sizing: border-box
}

.evfx-step {
    max-width: 480px;
    margin: 0 auto 48px;
    width: 100%
}

.evfx-step:last-child {
    margin-bottom: 0
}

.evfx-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.evfx-badge-icon {
    width: 26px;
    height: 26px;
    display: block;
    flex: none;
    border-radius: 6px
}

.evfx-badge-label {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.005em
}

.evfx-badge-pill {
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
    padding: 4px 11px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #86efac;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.evfx-badge-pill::before {
    content: "";
    width: 7px;
    height: 7px;
    display: inline-block;
    border-radius: 50%;
    background: #22c55e;
    flex: none
}

.evfx-heading {
    margin: 0 0 18px;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.02em;
    color: #0f172a;
    text-wrap: balance
}

.evfx-step-num {
    color: #94a3b8;
    font-weight: 700;
    margin-right: 5px
}

.evfx-visual {
    position: relative;
    width: 100%;
    margin: 0 auto 20px;
    max-width: 100%
}

.evfx-visual-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid #93c5fd;
    box-shadow: 0 0 0 5px rgb(219 234 254 / .7), 0 0 0 6px rgb(147 197 253 / .25), 0 18px 38px -10px rgb(59 130 246 / .32), 0 8px 16px -4px rgb(15 23 42 / .08)
}

.evfx-visual-frame img,
.evfx-visual-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.evfx-body {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.65;
    color: #475569;
    font-weight: 400;
    text-wrap: pretty;
    hyphens: manual;
    max-width: 100%;
    word-wrap: break-word
}

.evfx-body strong {
    color: #0f172a;
    font-weight: 700
}

@media(max-width:480px) {
    .evfx-wrap {
        padding: 20px 20px 40px
    }

    .evfx-step {
        margin-bottom: 42px;
        max-width: 100%
    }

    .evfx-heading {
        font-size: 20px;
        margin-bottom: 14px
    }

    .evfx-badge-icon {
        width: 22px;
        height: 22px
    }

    .evfx-badge-label {
        font-size: 18px
    }

    .evfx-badge-pill {
        font-size: 12px;
        padding: 3px 10px
    }

    .evfx-visual {
        margin-bottom: 18px
    }

    .evfx-visual-frame {
        border-radius: 14px;
        box-shadow: 0 0 0 4px rgb(219 234 254 / .6), 0 0 0 5px rgb(147 197 253 / .22), 0 12px 26px -8px rgb(59 130 246 / .28), 0 4px 12px -2px rgb(15 23 42 / .06)
    }

    .evfx-body {
        font-size: 14px;
        line-height: 1.6
    }
}

@media(min-width:1024px) {
    .evfx-wrap {
        padding: 80px 32px 96px
    }

    .evfx-step {
        max-width: 1040px;
        margin-bottom: 88px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 64px;
        row-gap: 0
    }

    .evfx-step .evfx-badge {
        grid-column: 1;
        grid-row: 1;
        align-self: end;
        margin-bottom: 14px
    }

    .evfx-step .evfx-heading {
        grid-column: 1;
        grid-row: 2;
        font-size: 30px;
        margin-bottom: 20px;
        letter-spacing: -.025em
    }

    .evfx-step .evfx-body {
        grid-column: 1;
        grid-row: 3;
        font-size: 16px;
        line-height: 1.65;
        align-self: start
    }

    .evfx-step .evfx-visual {
        grid-column: 2;
        grid-row: 1/4;
        margin: 0;
        align-self: center
    }

    .evfx-step--alt .evfx-badge,
    .evfx-step--alt .evfx-heading,
    .evfx-step--alt .evfx-body {
        grid-column: 2
    }

    .evfx-step--alt .evfx-visual {
        grid-column: 1
    }

    .evfx-visual-frame {
        border-radius: 22px
    }
}

.evfx-pages {
    max-width: 480px;
    margin: 0 auto 48px;
    width: 100%
}

.evfx-pages-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid #93c5fd;
    box-shadow: 0 0 0 5px rgb(219 234 254 / .7), 0 0 0 6px rgb(147 197 253 / .25), 0 18px 38px -10px rgb(59 130 246 / .32), 0 8px 16px -4px rgb(15 23 42 / .08)
}

.evfx-pages-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media(max-width:480px) {
    .evfx-pages {
        margin-bottom: 42px;
        max-width: 100%
    }

    .evfx-pages-frame {
        border-radius: 14px;
        box-shadow: 0 0 0 4px rgb(219 234 254 / .6), 0 0 0 5px rgb(147 197 253 / .22), 0 12px 26px -8px rgb(59 130 246 / .28), 0 4px 12px -2px rgb(15 23 42 / .06)
    }
}

@media(min-width:1024px) {
    .evfx-pages {
        max-width: 720px;
        margin-bottom: 88px
    }

    .evfx-pages-frame {
        border-radius: 22px
    }
}

.evgo-wrap {
    background: #fff;
    padding: 16px 22px 44px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #0f172a;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%
}

.evgo-wrap *,
.evgo-wrap *::before,
.evgo-wrap *::after {
    box-sizing: border-box
}

.evgo-inner {
    max-width: 680px;
    margin: 0 auto
}

.evgo-heading {
    text-align: center;
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #0f172a;
    text-wrap: balance
}

.evgo-sub {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.55;
    color: #475569;
    font-weight: 400;
    text-wrap: pretty
}

.evgo-sub strong {
    color: #0f172a;
    font-weight: 700
}

.evgo-list {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.evgo-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 16px;
    background: #fff;
    border: 1.5px solid #c7dbfe;
    border-radius: 16px;
    box-shadow: 0 0 0 4px rgb(219 234 254 / .5), 0 6px 16px -6px rgb(59 130 246 / .18), 0 3px 8px -2px rgb(15 23 42 / .05)
}

.evgo-icon {
    flex: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center
}

.evgo-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 11px
}

.evgo-content {
    flex: 1;
    min-width: 0
}

.evgo-title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.015em;
    color: #0f172a
}

.evgo-body {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
    font-weight: 400;
    text-wrap: pretty;
    word-wrap: break-word
}

.evgo-body strong {
    color: #0f172a;
    font-weight: 700
}

@media(max-width:480px) {
    .evgo-wrap {
        padding: 12px 20px 36px
    }

    .evgo-heading {
        font-size: 22px
    }

    .evgo-sub {
        font-size: 14px;
        margin-bottom: 24px
    }

    .evgo-list {
        gap: 12px
    }

    .evgo-item {
        padding: 14px;
        gap: 13px;
        border-radius: 14px;
        box-shadow: 0 0 0 3px rgb(219 234 254 / .4), 0 4px 12px -4px rgb(59 130 246 / .15), 0 2px 6px -2px rgb(15 23 42 / .05)
    }

    .evgo-icon {
        width: 44px;
        height: 44px
    }

    .evgo-icon img {
        border-radius: 10px
    }

    .evgo-title {
        font-size: 15px
    }

    .evgo-body {
        font-size: 13px;
        line-height: 1.5
    }
}

@media(min-width:1024px) {
    .evgo-wrap {
        padding: 28px 32px 64px
    }

    .evgo-inner {
        max-width: 780px
    }

    .evgo-heading {
        font-size: 36px;
        margin-bottom: 18px;
        letter-spacing: -.03em
    }

    .evgo-sub {
        font-size: 17px;
        margin-bottom: 48px;
        max-width: 640px
    }

    .evgo-list {
        gap: 16px
    }

    .evgo-item {
        padding: 24px 22px;
        gap: 20px;
        border-radius: 18px
    }

    .evgo-icon {
        width: 56px;
        height: 56px
    }

    .evgo-icon img {
        border-radius: 12px
    }

    .evgo-title {
        font-size: 19px;
        margin-bottom: 6px
    }

    .evgo-body {
        font-size: 15.5px;
        line-height: 1.6
    }
}

.evgo-heading strong {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff0;
    font-weight: 800
}

.evtm-wrap {
    background: #fff;
    padding: 16px 22px 60px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #0f172a;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%
}

.evtm-wrap *,
.evtm-wrap *::before,
.evtm-wrap *::after {
    box-sizing: border-box
}

.evtm-inner {
    max-width: 1040px;
    margin: 0 auto
}

.evtm-heading {
    text-align: center;
    margin: 0 0 32px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #0f172a;
    text-wrap: balance
}

.evtm-heading strong {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff0;
    font-weight: 800
}

.evtm-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center
}

.evtm-card {
    width: 100%;
    max-width: 480px
}

.evtm-facade {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    background: #f8fafc;
    cursor: pointer;
    border: 1.5px solid #93c5fd;
    box-shadow: 0 0 0 5px rgb(219 234 254 / .7), 0 0 0 6px rgb(147 197 253 / .25), 0 18px 38px -10px rgb(59 130 246 / .32), 0 8px 16px -4px rgb(15 23 42 / .08);
    transition: transform .25s ease
}

.evtm-facade:hover {
    transform: translateY(-2px)
}

.evtm-facade img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.evtm-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none
}

.evtm-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgb(0 0 0 / .3), 0 0 0 4px rgb(255 255 255 / .25);
    transition: transform .2s ease
}

.evtm-facade:hover .evtm-play-btn {
    transform: scale(1.08)
}

.evtm-play-arrow {
    width: 0;
    height: 0;
    border-top: 11px solid #fff0;
    border-bottom: 11px solid #fff0;
    border-left: 18px solid #1d4ed8;
    margin-left: 5px
}

.evtm-caption {
    margin-top: 14px;
    text-align: center
}

.evtm-name {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.01em
}

@media(max-width:480px) {
    .evtm-wrap {
        padding: 12px 20px 30px
    }

    .evtm-heading {
        font-size: 22px;
        margin-bottom: 24px
    }

    .evtm-grid {
        gap: 24px
    }

    .evtm-facade {
        border-radius: 16px;
        box-shadow: 0 0 0 4px rgb(219 234 254 / .6), 0 0 0 5px rgb(147 197 253 / .22), 0 12px 26px -8px rgb(59 130 246 / .28), 0 4px 12px -2px rgb(15 23 42 / .06)
    }

    .evtm-play-btn {
        width: 56px;
        height: 56px
    }

    .evtm-play-arrow {
        border-top: 9px solid #fff0;
        border-bottom: 9px solid #fff0;
        border-left: 15px solid #1d4ed8;
        margin-left: 4px
    }

    .evtm-name {
        font-size: 14px
    }
}

@media(min-width:1024px) {
    .evtm-wrap {
        padding: 48px 32px 88px
    }

    .evtm-heading {
        font-size: 36px;
        margin-bottom: 48px;
        letter-spacing: -.03em
    }

    .evtm-grid {
        flex-direction: row;
        gap: 32px;
        align-items: flex-start;
        justify-content: center
    }

    .evtm-card {
        flex: 1;
        max-width: 480px
    }

    .evtm-facade {
        border-radius: 22px
    }

    .evtm-play-btn {
        width: 76px;
        height: 76px
    }

    .evtm-play-arrow {
        border-top: 13px solid #fff0;
        border-bottom: 13px solid #fff0;
        border-left: 21px solid #1d4ed8;
        margin-left: 6px
    }

    .evtm-caption {
        margin-top: 18px
    }

    .evtm-name {
        font-size: 17px
    }
}

.evct-wrap {
    background: #fff;
    padding: 8px 22px 56px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%
}

.evct-wrap *,
.evct-wrap *::before,
.evct-wrap *::after {
    box-sizing: border-box
}

.evct-inner {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center
}

.evct-heading {
    text-align: center;
    margin: 0 0 28px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.025em;
    color: #0f172a;
    text-wrap: balance
}

.evct-heading strong {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff0;
    font-weight: 800
}

.evct-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 14px;
    background: linear-gradient(180deg, #4d8bff 0%, #1e54ff 50%, #0f3cdc 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -.015em;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .45), inset 0 -2px 0 rgb(0 0 0 / .18), 0 4px 14px -2px rgb(20 60 220 / .5), 0 1px 3px rgb(15 23 42 / .08);
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: pointer
}

.evct-btn>* {
    position: relative;
    z-index: 2
}

.evct-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgb(255 255 255 / .5) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: evct-shine 2.6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit
}

@keyframes evct-shine {
    0% {
        left: -40%;
        opacity: 0
    }

    20% {
        opacity: 1
    }

    60% {
        left: 120%;
        opacity: 1
    }

    100% {
        left: 120%;
        opacity: 0
    }
}

.evct-btn:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .5), inset 0 -2px 0 rgb(0 0 0 / .18), 0 6px 18px -2px rgb(20 60 220 / .6), 0 2px 4px rgb(15 23 42 / .1)
}

.evct-btn:active {
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .4), inset 0 -2px 0 rgb(0 0 0 / .18), 0 2px 6px -1px rgb(20 60 220 / .4), 0 1px 2px rgb(15 23 42 / .06)
}

.evct-btn-arrow {
    font-size: 16px;
    display: inline-block;
    font-weight: 400;
    transition: transform .25s ease
}

.evct-btn:hover .evct-btn-arrow {
    transform: translateX(3px)
}

@media(max-width:480px) {
    .evct-wrap {
        padding: 8px 20px 44px
    }

    .evct-heading {
        font-size: 20px;
        margin-bottom: 24px
    }

    .evct-btn {
        padding: 14px 28px;
        font-size: 16px;
        border-radius: 14px;
        width: 100%;
        max-width: 380px
    }

    .evct-btn-arrow {
        font-size: 15px
    }
}

@media(min-width:1024px) {
    .evct-wrap {
        padding: 24px 32px 80px
    }

    .evct-heading {
        font-size: 32px;
        margin-bottom: 36px;
        letter-spacing: -.03em
    }

    .evct-btn {
        padding: 14px 30px;
        font-size: 18px;
        border-radius: 14px
    }

    .evct-btn-arrow {
        font-size: 17px
    }
}

.evct-sub {
    margin: 14px auto 22px;
    max-width: 560px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #475569;
    letter-spacing: -.005em;
    text-align: center
}

.evct-sub strong {
    color: #0f172a;
    font-weight: 700
}

@media(max-width:420px) {
    .evct-sub {
        font-size: 14px;
        margin: 12px auto 20px;
        padding: 0 8px
    }
}

@media(min-width:1024px) {
    .evct-sub {
        font-size: 15px;
        max-width: 640px;
        margin: 18px auto 28px
    }
}

.evct-guarantee {
    margin: 14px 0 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #64748b;
    text-align: center;
    text-transform: uppercase
}

@media(min-width:1024px) {
    .evct-guarantee {
        font-size: 13px;
        margin-top: 16px
    }
}

.evfa-wrap {
    width: 100%;
    padding: 32px 22px 60px;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Inter, Helvetica, Arial, sans-serif;
    color: #0f172a;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased
}

.evfa-wrap *,
.evfa-wrap *::before,
.evfa-wrap *::after {
    box-sizing: border-box
}

.evfa-head {
    text-align: center;
    max-width: 880px;
    margin: 4px auto 30px
}

.evfa-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .005em;
    color: #1d4ed8;
    background: #eaf0ff;
    border: 1px solid #cfd9ff;
    border-radius: 8px;
    padding: 5px 14px;
    margin: 0
}

.evfa-heading {
    margin: 14px 0 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #0f172a;
    text-wrap: balance
}

.evfa-list {
    max-width: 880px;
    margin: 0 auto;
    background: #f4f7fb;
    border: 1px solid #dce6f5;
    border-radius: 22px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .8), 0 30px 60px -40px rgb(20 40 90 / .18)
}

.evfa-item {
    background: #fff;
    border: 1px solid #e3eaf4;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .35s ease, box-shadow .35s ease, background .35s ease
}

.evfa-item.is-open {
    border-color: #d6dff0;
    box-shadow: 0 1px 2px rgb(15 30 70 / .04), 0 12px 28px -18px rgb(15 30 70 / .18)
}

.evfa-q {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #0b1220;
    letter-spacing: -.005em;
    line-height: 1.3;
    font-family: inherit;
    box-sizing: border-box
}

.evfa-q:focus-visible {
    outline: 2px solid #1d4ed8;
    outline-offset: -2px;
    border-radius: 14px
}

.evfa-qtext {
    flex: 1;
    text-align: left
}

.evfa-iconwrap {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: color .35s ease
}

.evfa-icon {
    width: 14px;
    height: 14px;
    display: block;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1)
}

.evfa-item.is-open .evfa-iconwrap {
    color: #1d4ed8
}

.evfa-item.is-open .evfa-icon {
    transform: rotate(180deg)
}

.evfa-a {
    height: 0;
    overflow: hidden;
    will-change: height;
    transition: height .55s cubic-bezier(.22, 1, .36, 1)
}

.evfa-ainner {
    padding: 0 22px 22px;
    border-top: 1px solid #eef2f8;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .35s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1)
}

.evfa-item.is-open .evfa-ainner {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .08s
}

.evfa-ainner p {
    color: #5b6577;
    font-size: 14.5px;
    line-height: 1.7;
    margin: 14px 0 0
}

.evfa-ainner p:first-child {
    margin-top: 16px
}

.evfa-ainner strong {
    color: #0b1220;
    font-weight: 600
}

@media(hover:hover) {
    .evfa-item:not(.is-open):hover {
        border-color: #d6dff0;
        background: #fcfdff
    }
}

@media(max-width:900px) {
    .evfa-list {
        padding: 9px;
        border-radius: 20px
    }

    .evfa-q {
        padding: 13px 16px;
        font-size: 14.5px
    }

    .evfa-ainner {
        padding: 0 16px 16px
    }

    .evfa-ainner p {
        font-size: 14px;
        line-height: 1.65;
        margin-top: 12px
    }

    .evfa-ainner p:first-child {
        margin-top: 14px
    }
}

@media(max-width:640px) {
    .evfa-wrap {
        padding: 24px 20px 36px
    }

    .evfa-head {
        margin: 0 auto 22px
    }

    .evfa-kicker {
        font-size: 12px;
        padding: 4px 12px
    }

    .evfa-heading {
        font-size: 22px;
        margin-top: 12px
    }

    .evfa-list {
        padding: 7px;
        border-radius: 18px;
        gap: 8px
    }

    .evfa-item {
        border-radius: 12px
    }

    .evfa-q {
        padding: 12px 14px;
        gap: 12px;
        font-size: 14px;
        line-height: 1.35
    }

    .evfa-icon {
        width: 12px;
        height: 12px
    }

    .evfa-ainner {
        padding: 0 14px 16px
    }

    .evfa-ainner p {
        font-size: 13.5px;
        line-height: 1.65;
        margin-top: 10px
    }

    .evfa-ainner p:first-child {
        margin-top: 12px
    }
}

@media(max-width:380px) {
    .evfa-q {
        padding: 11px 12px;
        font-size: 13.5px
    }

    .evfa-ainner {
        padding: 0 12px 14px
    }
}

@media(min-width:1024px) {
    .evfa-wrap {
        padding: 48px 32px 88px
    }

    .evfa-head {
        margin-bottom: 42px
    }

    .evfa-heading {
        font-size: 36px;
        letter-spacing: -.03em;
        margin-top: 18px
    }
}

@media(prefers-reduced-motion:reduce) {

    .evfa-a,
    .evfa-icon,
    .evfa-ainner,
    .evfa-item {
        transition: none
    }
}

.evrv-wrap {
    background: #fff;
    padding: 48px 22px 64px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #0f172a;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden
}

.evrv-wrap *,
.evrv-wrap *::before,
.evrv-wrap *::after {
    box-sizing: border-box
}

.evrv-inner {
    max-width: 880px;
    margin: 0 auto
}

.evrv-heading {
    text-align: center;
    margin: 0 0 32px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #0f172a;
    text-wrap: balance
}

.evrv-heading strong {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff0;
    font-weight: 800
}

.evrv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0 0 36px
}

.evrv-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
    border: 1.5px solid #93c5fd;
    box-shadow: 0 0 0 4px rgb(219 234 254 / .6), 0 0 0 5px rgb(147 197 253 / .22), 0 12px 26px -8px rgb(59 130 246 / .28), 0 4px 12px -2px rgb(15 23 42 / .06)
}

.evrv-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.evrv-block {
    margin: 0 0 36px;
    text-align: center
}

.evrv-block:last-child {
    margin-bottom: 0
}

.evrv-frame {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid #93c5fd;
    box-shadow: 0 0 0 5px rgb(219 234 254 / .7), 0 0 0 6px rgb(147 197 253 / .25), 0 18px 38px -10px rgb(59 130 246 / .32), 0 8px 16px -4px rgb(15 23 42 / .08)
}

.evrv-frame img,
.evrv-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media(max-width:480px) {
    .evrv-wrap {
        padding: 32px 20px 48px
    }

    .evrv-heading {
        font-size: 22px;
        margin-bottom: 26px
    }

    .evrv-grid {
        gap: 12px;
        margin-bottom: 30px
    }

    .evrv-card {
        border-radius: 12px;
        box-shadow: 0 0 0 3px rgb(219 234 254 / .5), 0 0 0 4px rgb(147 197 253 / .18), 0 8px 18px -6px rgb(59 130 246 / .2), 0 3px 8px -2px rgb(15 23 42 / .05)
    }

    .evrv-block {
        margin-bottom: 30px
    }

    .evrv-frame {
        border-radius: 14px;
        box-shadow: 0 0 0 4px rgb(219 234 254 / .6), 0 0 0 5px rgb(147 197 253 / .22), 0 12px 26px -8px rgb(59 130 246 / .28), 0 4px 12px -2px rgb(15 23 42 / .06)
    }
}

@media(min-width:768px) {
    .evrv-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px
    }
}

@media(min-width:1024px) {
    .evrv-wrap {
        padding: 80px 32px 96px
    }

    .evrv-heading {
        font-size: 36px;
        margin-bottom: 48px;
        letter-spacing: -.03em
    }

    .evrv-grid {
        gap: 22px;
        margin-bottom: 56px
    }

    .evrv-card {
        border-radius: 16px
    }

    .evrv-block {
        margin-bottom: 56px
    }

    .evrv-frame {
        max-width: 680px;
        border-radius: 22px
    }
}