#svcModalFooter {
    padding: 10px 20px 18px;
    background: #fff;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 4
}

#svcModalCTA {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: var(--blue-600);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 3px 14px rgba(37, 99, 235, .28)
}

#svcModalCTA:hover {
    background: var(--blue-700);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, .38)
}

.text-muted {
    color: var(--text-muted)
}

.text-blue {
    color: var(--blue)
}

.text-gold {
    color: var(--gold)
}

body {
    background: var(--page-bg)
}

#services,
#reviews,
#offersSection {
    background: var(--page-bg)
}

main {
    background: var(--page-bg)
}

.section {
    padding: var(--s8) 0 var(--s6)
}

.section-header {
    margin-bottom: var(--s4)
}

.section-header h2 {
    font-size: clamp(22px, 3vw, var(--text-2xl));
    font-weight: var(--weight-bold);
    color: var(--text);
    letter-spacing: -.02em;
    line-height: var(--leading-tight);
    margin-bottom: 0
}

.section-header>p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    max-width: 340px
}

.section-label {
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue-600);
    display: block;
    margin-bottom: var(--s1)
}

.btn-primary:hover,
a.btn-primary:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue-lg)
}

.btn-primary:active,
a.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-blue)
}

.btn-secondary:hover,
button.btn-secondary:hover {
    border-color: var(--blue-200);
    color: var(--blue-600);
    background: var(--blue-50);
    box-shadow: none
}

.btn-send {
    background: var(--blue-600);
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
    border-radius: var(--r4);
    padding: var(--s2);
    min-height: 52px;
    box-shadow: var(--shadow-blue);
    letter-spacing: .01em
}

.btn-send:hover {
    background: var(--blue-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue-lg)
}

.btn-send:active {
    transform: none
}

.btn-gold {
    background: var(--amber-500);
    color: #fff;
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    border-radius: var(--r3);
    padding: 8px 16px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, .3)
}

.btn-gold:hover {
    background: var(--amber-600);
    transform: translateY(-1px)
}

.hot {
    background: var(--badge-hot-bg);
    color: var(--badge-hot-txt);
    border: 1px solid var(--badge-hot-bdr)
}

.new {
    background: var(--badge-new-bg);
    color: var(--badge-new-txt);
    border: 1px solid var(--badge-new-bdr)
}

.live {
    background: var(--badge-live-bg);
    color: var(--badge-live-txt);
    border: 1px solid var(--badge-live-bdr)
}

.exclusive {
    background: var(--badge-exc-bg);
    color: var(--badge-exc-txt);
    border: 1px solid var(--badge-exc-bdr)
}

.featured-badge {
    background: var(--badge-feat-bg);
    color: var(--badge-feat-txt);
    border: 1px solid var(--badge-feat-bdr)
}

.sale {
    background: var(--badge-sale-bg);
    color: var(--badge-sale-txt);
    border: 1px solid var(--badge-sale-bdr)
}

.limited {
    background: var(--badge-lim-bg);
    color: var(--badge-lim-txt);
    border: 1px solid var(--badge-lim-bdr)
}

.best {
    background: var(--badge-best-bg);
    color: var(--badge-best-txt);
    border: 1px solid var(--badge-best-bdr)
}

.featured-card {
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 4px 16px rgba(0, 0, 0, .04);
    background: var(--surface);
    padding: 0
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1), 0 2px 8px rgba(0, 0, 0, .05);
    border-color: rgba(245, 158, 11, .4)
}

.featured-card::before {
    display: none
}

.featured-icon {
    border-radius: var(--r2);
    background: var(--badge-feat-bg);
    border: 1px solid var(--badge-feat-bdr);
    width: 44px;
    height: 44px;
    font-size: 17px;
    color: var(--amber-600);
    box-shadow: none
}

.security-notice {
    border-radius: var(--r3);
    font-size: 12px;
    padding: 10px 14px;
    background: var(--green-pale);
    border-color: rgba(22, 163, 74, .15);
    color: var(--green)
}

.payment-note {
    border-radius: var(--r3);
    font-size: 12px;
    padding: 12px 14px;
    border-color: var(--border);
    color: var(--text-muted)
}

input,
textarea,
select {
    background: var(--surface-2);
    border: 1.5px solid var(--border);
    border-radius: var(--r3);
    color: var(--text);
    font-size: var(--text-sm);
    padding: 10px 13px;
    font-family: var(--font-body);
    transition: border-color var(--dur-fast) var(--ease),
        box-shadow var(--dur-fast) var(--ease),
        background var(--dur-fast) var(--ease)
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    background: var(--surface);
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(147, 197, 253, .22)
}

input::placeholder,
textarea::placeholder {
    color: var(--text-dim);
    opacity: 1
}

label {
    font-size: 11.5px;
    font-weight: var(--weight-bold);
    color: var(--text-muted);
    letter-spacing: .02em;
    margin-bottom: 5px;
    display: block
}

.pick {
    background: var(--surface-2);
    border: 1.5px solid var(--border);
    border-radius: var(--r3)
}

#reviewSubmitBtn {
    background: var(--blue-600);
    box-shadow: var(--shadow-blue);
    border-radius: var(--r3)
}

.workflow-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.step-num {
    border: 1.5px solid var(--blue-200);
    background: var(--surface);
    color: var(--blue-600);
    box-shadow: 0 2px 8px rgba(37, 99, 235, .1);
    font-size: 18px;
    width: 48px;
    height: 48px
}

.step:hover .step-num {
    background: var(--blue-50);
    border-color: var(--blue-500);
    box-shadow: 0 4px 12px rgba(37, 99, 235, .18)
}

.step h3 {
    font-size: 15px;
    color: var(--text)
}

.step p {
    font-size: 12.5px;
    color: var(--text-muted)
}

.section-bridge {
    background: var(--page-bg)
}

.section-bridge-inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r4);
    box-shadow: var(--shadow-xs);
    padding: var(--s3) var(--s4)
}

.section-bridge-text strong {
    font-size: 16px;
    font-weight: var(--weight-bold);
    color: var(--text)
}

.section-bridge-text p {
    font-size: var(--text-sm);
    color: var(--text-muted)
}

.success-icon {
    background: var(--green-pale);
    border: 1.5px solid rgba(22, 163, 74, .18);
    color: var(--green)
}

.success-box {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r3)
}

.social-icon {
    border-radius: var(--r3);
    background: var(--surface-2);
    border-color: var(--border);
    color: var(--text-muted);
    transition: all var(--dur-base) var(--ease)
}

.social-icon:hover {
    background: var(--blue-600);
    color: #fff;
    border-color: var(--blue-600);
    box-shadow: var(--shadow-blue);
    transform: translateY(-2px)
}

.bot-card {
    border-radius: var(--r4);
    border-color: var(--border);
    background: var(--surface-2)
}

.bot-card:hover {
    background: var(--blue-50);
    border-color: var(--blue-200)
}

#svcModalBox {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .16), 0 4px 16px rgba(0, 0, 0, .07);
    display: grid;
    grid-template-rows: 1fr auto
}

#svcModalFooter {
    background: var(--surface)
}

.db-error {
    background: var(--red-pale);
    border-color: rgba(220, 38, 38, .15);
    border-radius: var(--r3);
    color: var(--red);
    font-size: var(--text-sm)
}

.eyebrow-dot {
    background: var(--green);
    box-shadow: 0 0 5px var(--green)
}

#howPopover {
    position: fixed;
    z-index: 99999;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .14), 0 3px 12px rgba(0, 0, 0, .07);
    width: 360px;
    max-width: calc(100vw - 24px);
    opacity: 0;
    transform: translateY(8px) scale(.96);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease
}

#howPopover.dir-up {
    transform: translateY(-8px) scale(.96);
    transform-origin: bottom right
}

#howPopover.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto
}

#howPopover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 36px;
    border: 8px solid transparent;
    border-bottom-color: var(--border)
}

#howPopover::after {
    content: '';
    position: absolute;
    bottom: calc(100% - 1px);
    right: 37px;
    border: 7px solid transparent;
    border-bottom-color: #fff
}

#howPopover.dir-up::before {
    bottom: auto;
    top: 100%;
    right: 36px;
    border-top-color: var(--border);
    border-bottom-color: transparent
}

#howPopover.dir-up::after {
    bottom: auto;
    top: calc(100% - 1px);
    right: 37px;
    border-top-color: #fff;
    border-bottom-color: transparent
}

@keyframes svcModalIn {
    from {
        opacity: 0;
        transform: scale(.95) translateY(10px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

@media(max-width:640px) {
    .news-banner-link {
        display: none
    }
}

@media(max-width:1080px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .section-header>p {
        max-width: 100%;
        text-align: right
    }
}

@media(max-width:1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:760px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }
}

@media(max-width:400px) {
    .services-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:640px) {
    .section-bridge-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px
    }
}

@media(max-width:760px) {
    .steps {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:480px) {
    .steps {
        grid-template-columns: 1fr
    }
}

@media(max-width:760px) {
    .form-steps {
        display: none
    }
}

@media(max-width:760px) {
    .sticky-order-cta {
        position: fixed;
        bottom: calc(68px + env(safe-area-inset-bottom));
        left: 16px;
        right: 16px;
        z-index: 85;
        display: none
    }

    .sticky-order-cta.visible {
        display: block
    }

    .sticky-order-cta .btn-send {
        border-radius: 999px;
        box-shadow: 0 8px 32px var(--blue-glow)
    }
}

@media(min-width:761px) {
    .sticky-order-cta {
        display: none
    }
}

@media(max-width:580px) {
    .form-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:640px) {
    #featuredSection {
        padding: 28px 0 28px
    }

    #featuredGridWrap {
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px)
    }

    .featured-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: none;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 2px 16px 12px;
        scrollbar-width: none;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        scroll-padding-right: 30px
    }

    .featured-grid::-webkit-scrollbar {
        display: none
    }

    .featured-grid:has(> :only-child) {
        grid-template-columns: unset;
        justify-content: unset
    }

    .featured-card {
        flex: 0 0 75vw;
        max-width: 300px;
        min-width: 230px;
        scroll-snap-align: none
    }
}

@media(max-width:640px) {
    .workflow-section {
        padding: 32px 0 24px
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 0
    }

    .steps::after {
        display: none
    }

    .step {
        padding: 28px 16px 24px;
        border-left: 1px solid var(--border);
        border-bottom: 1px solid var(--border)
    }

    .step:nth-child(2n+1) {
        border-left: none
    }

    .step:nth-child(n+3) {
        border-bottom: none
    }

    .step+.step::before {
        display: none
    }

    .step-num {
        width: 44px;
        height: 44px;
        font-size: 18px
    }

    .step h3 {
        font-size: 14px
    }

    .step p {
        font-size: 12px
    }

    .workflow-cta {
        padding: 20px 16px 0
    }

    .workflow-cta div {
        flex-direction: column
    }
}

@media(max-width:640px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 16px
    }

    .section-header h2 {
        font-size: clamp(18px, 5vw, 24px)
    }

    .section-header>p {
        font-size: 12.5px;
        max-width: 100%
    }

    .section {
        padding: 32px 0 24px
    }

    .wrap {
        width: calc(100% - 32px)
    }
}

@media(max-width:640px) {
}

@media(max-width:760px) {
    .sticky-order-cta {
        bottom: calc(72px + env(safe-area-inset-bottom));
        left: 12px;
        right: 12px
    }

    .sticky-order-cta .btn-send {
        min-height: 50px;
        font-size: 15px
    }
}

@media(max-width:640px) {
    .section-bridge-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        border-radius: 12px
    }

    .section-bridge-text strong {
        font-size: 15px
    }

    .section-bridge-text p {
        font-size: 12px
    }
}

@media(max-width:640px) {
    #featuredSection .wrap {
        position: relative
    }

    .featured-grid::after,
    .services-grid::after {
        content: '';
        position: sticky;
        left: 0;
        min-width: 24px;
        flex-shrink: 0;
        pointer-events: none
    }

}

@media(max-width:480px) {
    #howPopover {
        width: calc(100vw - 24px)
    }

    #howPopover::before,
    #howPopover::after {
        display: none
    }

}

@media(max-width: 760px) {

    *,
    *::before,
    *::after {
        box-sizing: border-box
    }

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw
    }

    .wrap {
        width: 100%;
        padding: 0 16px;
        margin: 0 auto
    }

    .section {
        padding-left: 0;
        padding-right: 0
    }

    .brand {
        flex-shrink: 0
    }

    .brand img {
        width: 32px;
        height: 32px;
        border-radius: 9px
    }

    .brand-text b {
        font-size: 14px
    }

    .brand-text span {
        display: none
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
        width: 100%
    }

    #featuredGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px
    }

}

@media (max-width: 768px) {

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent
        }

        html,
        body {
            overflow-x: hidden;
            max-width: 100vw
        }

        body {
            padding-bottom: max(76px, calc(76px + env(safe-area-inset-bottom)))
        }

        img,
        video,
        iframe,
        table {
            max-width: 100%
        }
    }

    @media (max-width: 768px) {
        .btn-send {
            width: 100%;
            min-height: 52px;
            font-size: 15px;
            font-weight: 800;
            padding: 0 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-sizing: border-box;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis
        }

        .btn-send i {
            font-size: 18px;
            flex-shrink: 0
        }

        .btn-primary,
        .btn-secondary {
            min-height: 48px;
            font-size: 14px;
            font-weight: 700;
            padding: 0 16px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            box-sizing: border-box
        }

        .sticky-order-cta {
            left: 12px;
            right: 12px;
            bottom: calc(72px + env(safe-area-inset-bottom));
            z-index: 85
        }

        .sticky-order-cta .btn-send {
            border-radius: 999px;
            min-height: 50px;
            box-shadow: 0 8px 28px rgba(37, 99, 235, .4)
        }
    }

    .featured-img-panel {
        aspect-ratio: 1 / 1;
        overflow: hidden;
    }

    /* Contain paint for offscreen sections */

    .section {
        contain: layout style;
    }

    #services,
    #offersSection {
        contain: none;
    }

    /* --- Block --- */

    html {
        overflow-x: hidden
    }

    body {
        overflow-x: hidden;
        max-width: 100vw
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box
    }

    input,
    textarea,
    select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: block
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        width: 100%;
        box-sizing: border-box
    }

    .field.full {
        grid-column: 1 / -1
    }