:root {
    --bg: #ffffff;
    --bg-soft: #fafafa;
    --text: #0f0f10;
    --muted: #6b6f76;
    --border: #eaecef;
    --brand: #6c24e0;
    --brand-600: #5a1fc0;
    --green: #16a34a;
    --pink: #ec4899;
    --shadow: 0 10px 30px rgba(18, 17, 39, .08);
    --radius-lg: 20px
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

tbody,
table,
table * {
    overflow: hidden;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.4
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(8px);
    background: rgba(255, 255, 255, .85);
    border-bottom: 1px solid var(--border)
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 64px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800
}

.logo svg {
    height: 36px
}

.nav-links {
    margin-left: 28px;
    display: flex;
    gap: 1.5rem
}

.nav-links a {
    font-weight: 500;
    color: #121212;
    border-radius: 5px;
    transition: all .4s;
    padding: 8px 15px
}

.nav-links a:hover {
    color: #9357f4;
    background: #ece0ff
}

.nav-cta {
    margin-left: auto;
    display: flex;
    gap: 10px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid var(--border);
    background: #fff;
    transition: all .4s
}

.btn.primary {
    background: var(--brand);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow)
}

.btn:hover {
    scale: 1.05
}

.hero {
    background: var(--bg)
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    padding: 56px 0 36px;
    align-items: center
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #6c24e0;
    background: #f5efff;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #eadbff
}

.hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.05;
    margin: 14px 0;
    font-weight: 800
}

.lead {
    color: var(--muted);
    font-size: 18px;
    max-width: 560px
}

.hero-cta {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.illu {
    position: relative
}

.illu-inner {
    aspect-ratio: 4/3;
    display: grid;
    place-items: center
}

.illu img {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border)
}

.bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.bubble {
    position: absolute;
    border-radius: 999px;
    filter: blur(6px);
    opacity: .6
}

.bubble.b1 {
    width: 120px;
    height: 120px;
    left: 10%;
    top: 10%;
    background: #dff1ff
}

.bubble.b2 {
    width: 160px;
    height: 160px;
    right: 6%;
    top: 8%;
    background: #fde7ff
}

.bubble.b3 {
    width: 220px;
    height: 220px;
    right: 14%;
    bottom: -6%;
    background: #eaf0ff
}

.quick-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 26px 0 64px
}

.qcard {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .04)
}

.qicon {
    display: grid;
    place-items: center;
    border-radius: 14px
}

.qicon svg {
    width: 46px;
    height: 46px;
    transform-origin: center;
    transition: transform .25s
}

.qcard:hover svg {
    transform: translateZ(0) scale(1.08) rotate(4deg)
}

.quick-row .qcard:nth-child(1) {
    color: #6c24e0;
    border-color: #6c24e077
}

.quick-row .qcard:nth-child(2) {
    color: #3e4ce9;
    border-color: #3e4ce97a
}

.quick-row .qcard:nth-child(3) {
    color: #119670;
    border-color: #11967076
}

.quick-row .qcard:nth-child(4) {
    color: #f20e9a;
    border-color: #f20e9b71
}

.qtitle {
    font-weight: 700
}

.qdesc {
    font-size: 13px;
    color: var(--muted)
}

section {
    padding: 40px 0 60px
}

.section-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 26px
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 1rem;
    background: #fff
}

#modalTitle {
    text-align: center;
    width: 100%
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700
}

.faq-item p {
    margin: 10px 0 0;
    color: var(--muted)
}

.contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
    color: var(--muted)
}

.cookie {
    position: fixed;
    right: 20px;
    bottom: 20px;
    max-width: 500px;
    z-index: 60;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 16px;
    padding: 14px 16px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.cookie .actions {
    display: flex;
    gap: 8px
}

.cookie button {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 700
}

.cookie .accept {
    background: var(--brand);
    color: #fff;
    border-color: transparent
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 11, 16, .3);
    backdrop-filter: blur(6px) saturate(120%);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 11, 16, .3);
    backdrop-filter: blur(6px) saturate(120%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    width: min(820px, 96vw);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    padding: 24px;
    transform: translateY(8px) scale(.96);
    opacity: 0;
    transition: transform .28s cubic-bezier(.2, .8, .2, 1), opacity .28s ease;
    min-height: 170px;
    transition:
        transform .28s cubic-bezier(.2, .8, .2, 1),
        opacity .28s ease,
        min-height .35s ease;
}

.modal.grow {
    min-height: 520px;
}

.modal-overlay.is-open .modal {
    transform: none;
    opacity: 1;
}

.modal header {
    position: relative;
    border: 0;
    background: transparent;
    backdrop-filter: none
}

.modal .section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px
}

.modal h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 800
}

.modal .muted {
    color: var(--muted)
}

.modal .input {
    display: flex;
    gap: 10px
}

.modal .input input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 16px;
    outline: none
}

.modal .input button {
    padding: 14px 18px;
    border-radius: 14px;
    border: none;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    cursor: pointer
}

.modal .skeleton {
    --h: 54px;
    height: var(--h);
    border-radius: 12px;
    background: linear-gradient(90deg, #f2f4f7 0%, #e9edf3 20%, #f2f4f7 40%);
    background-size: 200% 100%;
    animation: shimmer 1.2s infinite
}

@keyframes shimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.modal .total {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
    padding-top: 8px;
    font-weight: 800
}

.modal table {
    width: 100%;
    border-collapse: collapse
}

.modal th,
.modal td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--border);
    text-align: left
}

.modal th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #5b6068
}

.modal td a {
    color: var(--brand-600);
    font-weight: 600
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer
}

.modal-close:hover {
    background: #faf7ff
}

body.modal-open {
    overflow: hidden
}

@media (max-width:1024px) {
    .hero-wrap {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .illu-inner {
        aspect-ratio: 16/9
    }

    .quick-row {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .two-col {
        grid-template-columns: 1fr
    }
}

@media (max-width:560px) {
    .nav-links {
        display: none
    }

    .hero h1 {
        font-size: 36px
    }

    .qdesc {
        display: none
    }

    .btn {
        padding: 10px 12px
    }
}

body::-webkit-scrollbar {
    width: 8px
}

body::-webkit-scrollbar-track {
    background: transparent
}

body::-webkit-scrollbar-thumb {
    background-color: var(--brand);
    border-radius: 20px;
    border: 2px solid transparent
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .2, 1);
    will-change: opacity, transform
}

.reveal.in {
    opacity: 1;
    transform: none
}

@keyframes blockIn {
    from {
        opacity: 0;
        transform: translateY(6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.modal-show {
    animation: blockIn .35s ease both
}

@keyframes txIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(.98)
    }

    100% {
        opacity: 1;
        transform: none
    }
}

.tx-row.tx-in {
    animation: txIn .5s cubic-bezier(.2, .8, .2, 1) both
}