*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --ink: #CD1F46;
    --ink2: #1C2333;
    --muted: #6B7685;
    --border: #E2E8F0;
    --bg: #F7F9FC;
    --white: #fff;
    --green: #059669;
    --gd: #047857;
    --gl: #D1FAE5;
    --gxl: #ECFDF5;
    --acc: #10B981
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Instrument Sans',sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border)
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    max-width: 100%
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0
}

.nav-logo-img {
    display: block;
    height: 36px;
    width: auto;
    max-width: min(200px,45vw);
    object-fit: contain
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0
}

    .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--muted);
        text-decoration: none;
        transition: color .2s
    }

        .nav-links a:hover {
            color: var(--ink)
        }

.nav-cta {
    background: var(--green) !important;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600 !important
}

    .nav-cta:hover {
        background: var(--gd) !important;
        color: #fff !important
    }

.patent-bar {
    background: var(--ink);
    color: rgba(255,255,255,.6);
    text-align: center;
    font-size: 12px;
    padding: 9px 20px;
    letter-spacing: .03em;
    margin: 0
}

    .patent-bar strong {
        color: #34D399
    }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 40px 70px;
    background: var(--ink);
    overflow: hidden;
    position: relative
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(16,185,129,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(16,185,129,.05) 1px,transparent 1px);
    background-size: 50px 50px
}

.glow1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle,rgba(16,185,129,.18) 0%,transparent 70%);
    pointer-events: none
}

.glow2 {
    position: absolute;
    bottom: -150px;
    left: -60px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle,rgba(16,185,129,.09) 0%,transparent 70%);
    pointer-events: none
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    width: 100%
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(16,185,129,.15);
    border: 1px solid rgba(16,185,129,.3);
    color: #34D399;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
    animation: fadeUp .5s ease both
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34D399;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.3)
    }
}

.hero h1 {
    font-family: 'Syne',sans-serif;
    font-size: clamp(34px,5vw,56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -.02em;
    animation: fadeUp .5s .1s ease both
}

    .hero h1 em {
        font-style: normal;
        color: var(--acc)
    }

.hero p {
    font-size: 17px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 470px;
    animation: fadeUp .5s .2s ease both
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp .5s .3s ease both
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Instrument Sans',sans-serif
}

.btn-g {
    background: var(--green);
    color: #fff
}

    .btn-g:hover {
        background: var(--gd);
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(5,150,105,.35)
    }

.btn-o {
    background: transparent;
    color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.2)
}

    .btn-o:hover {
        border-color: rgba(255,255,255,.5);
        color: #fff
    }

.hero-vis {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeUp .6s .15s ease both
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px
}

.vc {
    background: var(--white);
    border: 1px solid var(--ink2);
    border-radius: 14px;
    padding: 18px 20px;
    backdrop-filter: blur(8px);
    transition: transform .2s
}

    .vc:hover {
        transform: translateX(-4px)
    }

    .vc.hi {
        background: var(--white);
        border-color: var(--ink2)
    }

.vl {
    font-size: 11px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    margin-bottom: 4px
}

.vv {
    font-family: 'Syne',sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--ink)
}

    .vv.g {
        color: var(--green)
    }

.vv-suffix {
    font-size: 15px;
    color: rgba(255,255,255,.35);
    font-family: 'Instrument Sans',sans-serif
}

.vs {
    font-size: 13px;
    color: var(--ink2);
    margin-top: 2px
}

.stk {
    background: var(--white);
    border: 1px solid var(--ink2);
    border-radius: 14px;
    padding: 15px 18px
}

.stk-t {
    font-size: 11px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    margin-bottom: 10px
}

.si {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 13px
}

    .si:last-child {
        border-bottom: none
    }

.sn {
    color: var(--ink);
    font-weight: 500
}

.sq {
    color: var(--ink2);
    font-size: 12px;
    margin-top: 2px
}

.sb {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 20px;
    font-weight: 600
}

.sa {
    background: rgba(245,158,11,.15);
    color: #F59E0B
}

.sg {
    background: rgba(16,185,129,.15);
    color: #34D399
}

.trust-bar {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 0
}

.ti {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500
}

.tic {
    width: 20px;
    height: 20px;
    background: var(--gl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px
}

.sec {
    padding: 88px 40px
}

.sec-in {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto
}

.sec-in--center {
    text-align: center
}

.ey {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px
}

.st {
    font-family: 'Syne',sans-serif;
    font-size: clamp(26px,4vw,40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 14px
}

.ss {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 44px
}

.ss--center {
    margin-left: auto;
    margin-right: auto
}

.pgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px
}

.pc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
    transition: all .2s
}

    .pc:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        transform: translateY(-2px)
    }

.pc--red {
    border-top: 3px solid #EF4444
}

.pc--amber {
    border-top: 3px solid #F59E0B
}

.pc--violet {
    border-top: 3px solid #8B5CF6
}

.pc--green {
    border-top: 3px solid var(--green)
}

.pi {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px
}

.pi--red {
    background: #FEE2E2
}

.pi--amber {
    background: #FEF3C7
}

.pi--violet {
    background: #EDE9FE
}

.pi--green {
    background: var(--gxl)
}

.pc h3 {
    font-family: 'Syne',sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 7px
}

.pc p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65
}

.pstat {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Syne',sans-serif;
    color: var(--green);
    margin-top: 10px
}

.psub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px
}

.how-sec {
    background: var(--ink)
}

    .how-sec .st {
        color: var(--white)
    }

    .how-sec .ss {
        color: var(--white)
    }

    .how-sec .ey {
        color: var(--white)
    }

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(210px,1fr));
    gap: 2px;
    margin-top: 8px;
    list-style: none;
    padding: 0
}

.step {
    background: rgba(255,255,255,.4);
    border: 1px solid rgba(255,255,255,.08);
    padding: 30px 26px;
    transition: background .2s
}

    .step:first-child {
        border-radius: 16px 0 0 16px
    }

    .step:last-child {
        border-radius: 0 16px 16px 0
    }

    .step:hover {
        background: rgba(255,255,255,.07)
    }

.snum {
    font-family: 'Syne',sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--acc);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

    .snum::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(16,185,129,.2)
    }

.step h3 {
    font-family: 'Syne',sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 9px
}

.step p {
    font-size: 13.5px;
    color: var(--white);
    line-height: 1.65
}

.sico {
    font-size: 26px !important;
    margin-bottom: 10px
}

.fgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(290px,1fr));
    gap: 20px
}

.fc {
    display: flex;
    gap: 14px;
    padding: 22px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all .2s
}

    .fc:hover {
        border-color: var(--green);
        box-shadow: 0 4px 16px rgba(5,150,105,.08)
    }

.fi {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gxl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.fc h4 {
    font-family: 'Syne',sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px
}

.fc p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6
}

.price-sec {
    background: var(--bg)
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 18px;
    max-width: 940px;
    margin: 0 auto
}

.prc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
    transition: all .2s;
    position: relative
}

    .prc:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(0,0,0,.08)
    }

    .prc.pop {
        border-color: var(--green);
        box-shadow: 0 4px 20px rgba(5,150,105,.12)
    }

.pop-b {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap
}

.pplan {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px
}

.pamt {
    font-family: 'Syne',sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px
}

    .pamt span {
        font-size: 17px;
        color: var(--muted);
        font-weight: 400
    }

.pnote {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 18px
}

.pdiv {
    height: 1px;
    background: var(--border);
    margin: 16px 0
}

.pfl {
    list-style: none
}

    .pfl li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: var(--ink2);
        margin-bottom: 9px;
        line-height: 1.5
    }

        .pfl li::before {
            content: '✓';
            color: var(--green);
            font-weight: 700;
            font-size: 12px;
            margin-top: 1px;
            flex-shrink: 0
        }

.pbtn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    margin-top: 18px;
    font-family: 'Instrument Sans',sans-serif;
    transition: all .2s;
    border: none
}

.pbg {
    background: var(--green);
    color: #fff
}

    .pbg:hover {
        background: var(--gd)
    }

.pbo {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green)
}

    .pbo:hover {
        background: var(--gxl)
    }

.test-sec {
    background: var(--gxl);
    border-top: 1px solid #A7F3D0;
    border-bottom: 1px solid #A7F3D0
}

.tgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(270px,1fr));
    gap: 18px;
    margin-top: 30px
}

.tc {
    background: #fff;
    border-radius: 16px;
    padding: 26px;
    border: 1px solid #A7F3D0;
    box-shadow: 0 2px 8px rgba(5,150,105,.06)
}

.tt {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink2);
    margin-bottom: 14px;
    font-style: italic
}

.ta {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
}

.tr {
    font-size: 12px;
    color: var(--muted)
}

.stars {
    color: #F59E0B;
    font-size: 13px;
    margin-bottom: 10px;
    letter-spacing: 2px
}

.cgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(210px,1fr));
    gap: 14px
}

.cc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 11px
}

.cico {
    font-size: 21px;
    flex-shrink: 0;
    margin-top: 1px
}

.cc h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px
}

.cc p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.55
}

.con-sec {
    background: var(--bg)
}

.con-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.ci h3 {
    font-family: 'Syne',sans-serif;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 14px
}

.ci p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px
}

.cd {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
    font-size: 14px;
    color: var(--ink2)
}

.cdico {
    width: 34px;
    height: 34px;
    background: var(--gxl);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0
}

.offer-box {
    margin-top: 24px;
    padding: 16px;
    background: var(--gxl);
    border-radius: 12px;
    border: 1px solid #A7F3D0
}

    .offer-box h4 {
        font-size: 13px;
        font-weight: 700;
        color: var(--gd);
        margin-bottom: 5px
    }

    .offer-box p {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.6
    }

.patent-notice {
    margin-top: 18px;
    padding: 14px 16px;
    background: var(--ink);
    border-radius: 12px
}

    .patent-notice h4 {
        font-size: 11px;
        font-weight: 700;
        color: #34D399;
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: 5px
    }

    .patent-notice p {
        font-size: 12px;
        color: rgba(255,255,255,.5);
        line-height: 1.6
    }

.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,.05)
}

    .contact-form h3 {
        font-family: 'Syne',sans-serif;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 18px
    }

.fg {
    margin-bottom: 14px
}

.fl {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--ink2)
}

.fc2 {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-size: 14px;
    font-family: 'Instrument Sans',sans-serif;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: border-color .2s,box-shadow .2s
}

    .fc2:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 3px rgba(5,150,105,.1)
    }

.fc2--invalid {
    border-color: #DC2626
}

    .fc2--invalid:focus {
        border-color: #DC2626;
        box-shadow: 0 0 0 3px rgba(220,38,38,.12)
    }

.field-error {
    font-size: 12px;
    color: #DC2626;
    margin-top: 4px;
    line-height: 1.4
}

.form-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 9px;
    padding: 11px 13px;
    font-size: 13px;
    color: #B91C1C;
    margin-bottom: 12px;
    line-height: 1.5
}

.fg--hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

textarea.fc2 {
    resize: vertical;
    min-height: 100px
}

.fr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px
}

.fsel {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7685' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 11px center;
    padding-right: 34px;
    cursor: pointer
}

.fsub {
    width: 100%;
    padding: 13px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Instrument Sans',sans-serif;
    cursor: pointer;
    transition: all .2s;
    margin-top: 4px
}

    .fsub:hover {
        background: var(--gd);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(5,150,105,.3)
    }

    .fsub:disabled {
        opacity: .85;
        cursor: default;
        transform: none
    }

.fnote {
    font-size: 11.5px;
    color: var(--muted);
    text-align: center;
    margin-top: 9px
}

.fok {
    background: var(--gxl);
    border: 1px solid #A7F3D0;
    border-radius: 10px;
    padding: 14px 18px;
    text-align: center;
    color: var(--gd);
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px
}

footer {
    background: var(--gxl);
    color: var(--ink2);
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px
}

.fl2 {
    font-family: 'Syne',sans-serif;
    font-weight: 800;
    font-size: 17px;
}

    .fl2 span {
        color: var(--acc)
    }

.footer-tag {
    font-size: 12px;
    /*color: rgba(255,255,255,.3);*/
    margin-top: 3px
}

footer nav.flinks {
    position: static;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    display: flex;
    gap: 22px;
    flex-wrap: wrap
}

.flinks a {
    font-size: 13px;
    color: var(--ink2);
    text-decoration: none
}

    .flinks a:hover {
        color: black;
    }

.fcp {
    font-size: 12px;
    text-align: right
}

.fcp-sub {
    font-size: 11px
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media(max-width:768px) {
    .site-nav {
        padding: 0 18px
    }

    .nav-links {
        display: none
    }

    .nav-logo-img {
        height: 32px
    }

    .hero {
        padding: 130px 18px 50px
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .sec {
        padding: 60px 18px
    }

    .con-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .fr {
        grid-template-columns: 1fr
    }

    .steps {
        grid-template-columns: 1fr
    }

    .step:first-child {
        border-radius: 16px 16px 0 0
    }

    .step:last-child {
        border-radius: 0 0 16px 16px
    }

    .trust-bar {
        padding: 14px 18px;
        gap: 16px
    }

    footer {
        padding: 28px 18px
    }
}

.content-page {
    max-width: 1024px;
    margin: auto;
    margin-top: 100px;
    color: var(--ink2);
}

    .content-page h1 {
        color: var(--ink);
        margin: 10px 0px;
    }

    .content-page h2 {
        margin: 10px 0px;
        font-size: 1.2rem;
    }

    .content-page h3 {
        margin: 10px 0px;
        font-size: 1.0rem;
    }

    .content-page section {
        margin: 20px 0px 0px 0px;
    }

    .content-page > div {
        margin: 20px 0px;
    }

.left-align {
    text-align: left;
}

.how-much-sec .calculator {
    margin-top: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .how-much-sec .calculator > div.primary > div {
        display: inline-block;
        margin: 0 auto;
        width: 300px;
        padding: 40px 20px;
        border-radius: 12px;
        outline: 1px solid var(--border);
        background-color: white;
        font-weight: bold;
        min-height: 150px;
        position: relative;
        transition: all .2s;
    }
        .how-much-sec .calculator > div.primary {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }


    .how-much-sec .calculator div.red:hover,
    .how-much-sec .calculator div.amber:hover,
    .how-much-sec .calculator div.green:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,.08)
    }

    .how-much-sec .calculator div.red {
        border-top: 3px solid #EF4444;
    }

    .how-much-sec .calculator div.amber {
        border-top: 3px solid #F59E0B;
    }

    .how-much-sec .calculator div.green {
        border-top: 3px solid #10B981;
    }

    .how-much-sec .calculator div p {
        font-weight: normal;
    }

    .how-much-sec .calculator div img {
        max-width: 150px;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .how-much-sec .calculator div svg {
        display: block;
        margin: 20px auto 0px;
        z-index: 1000;
    }

    .how-much-sec .calculator .full-width {
        display: flex;
        width: 100%;
        padding: 10px;
        min-height: auto;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        background-color: white;
        border-radius: 12px;
        outline: 1px solid var(--border);
    }

        .how-much-sec .calculator .full-width.values > div{
            display: inline-block;
            margin: 0 auto;
            width: 300px;
            padding: 10px 20px;
            font-weight: bold;
            min-height: auto;
            position: relative;
            transition: all .2s;
        }

        .how-much-sec .calculator .full-width.slider {
            padding: 20px;
        }
            .how-much-sec .calculator .full-width.slider input {
                width: 100%;
                height: 6px;
                padding: 0;
                margin: 0;
                appearance: none;
                -webkit-appearance: none;
                border: 1px solid #dfe3eb;
                border-radius: 999px;
                outline: none;
                cursor: pointer;
                /* Filled = GREEN | Remaining = GRAY */
                background: linear-gradient( to right, #22c55e 0%, #22c55e var(--value), #e5e7eb var(--value), #e5e7eb 100% )
            }

                /* Chrome / Edge / Safari */
                .how-much-sec .calculator .full-width.slider input::-webkit-slider-runnable-track {
                    height: 6px;
                    background: transparent;
                    border-radius: 999px;
                }

                .how-much-sec .calculator .full-width.slider input::-webkit-slider-thumb {
                    -webkit-appearance: none;
                    appearance: none;
                    width: 27px;
                    height: 27px;
                    margin-top: -11px;
                    border: 0;
                    border-radius: 50%;
                    background: #ef4444;
                    cursor: pointer;
                }

                /* Firefox */
                .how-much-sec .calculator .full-width.slider input::-moz-range-track {
                    height: 6px;
                    background: transparent;
                    border-radius: 999px;
                }

                .how-much-sec .calculator .full-width.slider input::-moz-range-progress {
                    height: 6px;
                    background: transparent;
                }

                .how-much-sec .calculator .full-width.slider input::-moz-range-thumb {
                    width: 27px;
                    height: 27px;
                    border: 0;
                    border-radius: 50%;
                    background: #ef4444;
                    cursor: pointer;
                }


/*.pharmacy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: visible;
}

.bin {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
}*/
/* Falling circles */
.pill {
    position: absolute;
    margin-top: -75px;
    display: block;
    border-radius: 50%;
    background: #4caf50;
    animation-name: drop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes drop {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(30px) translateX(var(--drift, 0px));
        opacity: 0;
    }
}
