:root {
    --bg: #202123;
    --chat: #343541;
    --bot: #444654;
    --user: #2f3240;
    --text: #e7e9ee;
    --muted: #a0a4ad;
    --chip: #2f323a;
    --accent: #FC78C0;
    --border: #2a2b31;
    --radius: 14px;
}

.iti {
    width: 100%;
}

input#firstName {
    background: var(--panel);
    color: var(--text);
    border: 1px solid var(--border);
    outline: none;
    border-radius: 10px
}

input#lastName {
    background: var(--panel);
    color: var(--text);
    border: 1px solid var(--border);
    outline: none;
    border-radius: 10px
}

input#email {
    background: var(--panel);
    color: var(--text);
    border: 1px solid var(--border);
    outline: none;
    border-radius: 10px
}

input#phoneNumber {
    background: var(--panel);
    color: var(--text);
    border: 1px solid var(--border);
    outline: none;
    border-radius: 10px
}

button#sendForm {
    background: var(--accent) !important;
}

.iti .iti__selected-dial-code {
    font-size: 14px !important;
    margin-bottom: 3px !important;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font: 15px/1.55 Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    display: flex;
    justify-content: center
}

/* ---------- LOADER OVERLAY ---------- */
.loader {
    position: fixed;
    inset: 0;
    background: #2e0249;
    color: #dfe5ef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.swirl {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #0a0d12;
    margin-bottom: 16px;
    box-shadow: 0 10px 40px #0009;
    transform-style: preserve-3d
}

.swirl img {
    width: 42px;
    height: 42px;
    animation: swpulse 2.2s ease-in-out infinite
}

@keyframes swpulse {

    0%,
    100% {
        transform: scale(.98)
    }

    50% {
        transform: scale(1)
    }
}

.spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #1f2732;
    border-top-color: #10a37f;
    animation: spin 1s linear infinite;
    margin: 12px 0 8px
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.loadtext {
    font-weight: 700;
    letter-spacing: .2px
}

.upgrade {
    margin-top: 6px;
    color: #b2bac6;
    font-size: 13px;
    height: 18px;
    display: flex;
    align-items: center;
    gap: 8px
}

.tag {
    padding: 2px 8px;
    border: 1px solid #2b3442;
    border-radius: 999px;
    background: #121722
}

.bar {
    width: 240px;
    height: 6px;
    background: #171c22;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: inset 0 0 0 1px #223
}

.bar>i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0e7, #10a37f, #0e7);
    /* linear-gradient(90deg, #0e7, #10a37f, #0e7) */
    animation: bar 2.2s ease-out forwards
}

@keyframes bar {
    to {
        width: 100%
    }
}

.pct {
    margin-top: 6px;
    color: #9fb1c6;
    font-size: 12px
}

/* ---------- PAGE SHELL ---------- */
.wrap {
    width: min(1050px, 100%);
    padding: 28px 18px;
    opacity: 0;
    transition: opacity .4s ease
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.logoBox {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #0f1117;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 20px #0006;
    transform: translateZ(0);
    transition: transform .25s
}

.logoBox:hover {
    transform: translateY(-2px) rotate(-1deg)
}

.logoBox img {
    width: 26px;
    height: 26px
}

.title {
    font-weight: 800;
    font-size: clamp(18px, 3vw, 28px)
}

.subtitle {
    color: #b8bec9;
    font-size: 14px;
    margin-top: 2px
}

/* ---------- HERO INTRO (new) ---------- */
.hero-intro {
    background-image: url('../images/gradient.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 22px;
    margin: 20px 0 26px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.hero-intro h1 {
    margin: 0 0 12px;
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 800;
}

.hero-intro p {
    font-size: 16px;
    margin: 0 0 16px;
    line-height: 1.6;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    font-size: 15px;
}

.hero-cta a {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: .2s;
    display: inline-block;
}

.hero-cta a:hover {
    filter: brightness(1.05)
}

.fade-in-up {
    opacity: 0;
    transform: translateY(8px);
    animation: fadeInUp .35s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- CHAT ---------- */
.chat {
    background: var(--chat);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35)
}

@keyframes bgmove {
    to {
        transform: translate3d(2%, 1%, 0)
    }
}

.head {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #2b2c30;
    border-bottom: 1px solid #2c2d33;
    padding: 14px 16px
}

.miniLogo {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: #0f1117;
    display: grid;
    place-items: center
}

.miniLogo img {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4))
}

.name {
    font-weight: 700
}

.body {
    padding: 22px 0;
    min-height: 520px
}

.center {
    display: flex;
    justify-content: center;
    margin: 6px 0 18px
}

.chip {
    background: var(--chip);
    color: var(--muted);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    animation: fade .35s both
}

.row {
    max-width: 860px;
    margin: 0 auto 16px;
    display: flex;
    gap: 12px;
    padding: 0 22px
}

.avatar {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #22252f;
    display: grid;
    place-items: center;
    margin-top: 2px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25)
}

.avatar img {
    width: 18px;
    height: 18px;
    opacity: .95
}

.avatar.user {
    background: #4c515f;
    color: #d9e4ff;
    font-weight: 800
}

.bubble {
    flex: 1;
    background: var(--bot);
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid #00000012;
    animation: pop .22s ease-out both, fade .22s ease-out both
}

.row.user .bubble {
    background: var(--user)
}

.time {
    color: #c6c9d1;
    font-size: 12px;
    margin-bottom: 6px;
    opacity: .9
}

@keyframes pop {
    from {
        transform: translateY(8px);
        opacity: 0
    }

    to {
        transform: none;
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.quick {
    max-width: 860px;
    margin: 6px auto 14px;
    padding: 0 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    animation: fade .2s both
}

.quick button {
    position: relative;
    overflow: hidden;
    background: #2b2f36;
    border: 1px solid #3a3f48;
    color: #e2e6ec;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: .15s transform, .2s border-color
}

.quick button:hover {
    border-color: #5b6474;
    transform: translateY(-1px)
}

.quick button:active {
    transform: translateY(0)
}

.quick button::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: auto;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .15);
    pointer-events: none
}

.typing {
    display: inline-flex;
    gap: 6px;
    align-items: center
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cfd4de;
    opacity: .35;
    animation: blink 1.2s infinite
}

.dot:nth-child(2) {
    animation-delay: .2s
}

.dot:nth-child(3) {
    animation-delay: .4s
}

@keyframes blink {
    50% {
        opacity: 1
    }
}

/* ---------- FORM ---------- */
.form-wrap {
    max-width: 860px;
    margin: 0 auto 24px;
    padding: 0 22px;
    display: none;
    animation: fade .25s .05s both
}

.card {
    background: #1e2027;
    border: 1px solid #2a2d36;
    border-radius: 16px;
    padding: 18px 16px
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

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

label {
    font-size: 12px;
    color: #9aa0a6;
    margin: 2px 2px 6px;
    display: block
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #2b303a;
    background: #0e1117;
    color: #e9ecf1
}

input::placeholder {
    color: #788297
}

.cta {
    margin-top: 12px
}

.cta button {
    background: var(--accent);
    border: 0;
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: filter .15s
}

.cta button:hover {
    filter: brightness(1.05)
}

/* ---------- SITE FOOTER (legend) ---------- */
.site-footer {
    margin: 26px 0 18px;
    padding: 18px 18px 22px;
    color: #b8bec9;
    background: #26272f;
    border: 1px solid #2a2d33;
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
}

.site-footer .f-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap
}

.site-footer .brand-col {
    flex: 1 1 360px;
    min-width: 280px
}

.site-footer .brandline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px
}

.site-footer .brandlogo {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: #0f1117;
    display: grid;
    place-items: center;
}

.site-footer .brandlogo img {
    width: 18px;
    height: 18px;
    opacity: .95
}

.site-footer h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #e6e9f0
}

.site-footer p {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.55
}

.site-footer .meta-col {
    flex: 1 1 260px;
    min-width: 240px
}

.meta-line {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
    flex-wrap: wrap
}

.badge {
    font-size: 12px;
    color: #a9b1bf;
    background: #2e313a;
    border: 1px solid #3a3f48;
    padding: 4px 8px;
    border-radius: 999px
}

/* socials (not clickable) */
.socials {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 8px
}

.socials .ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #2c2f38;
    border: 1px solid #3a3f48;
    opacity: .85;
    user-select: none;
    pointer-events: none
}

.socials .ico svg {
    width: 15px;
    height: 15px;
    fill: #cdd3de
}

/* mini-links (not clickable) */
.mini-links {
    margin-top: 8px;
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #9fb0c4
}

.mini-links span {
    opacity: .9;
    border-bottom: 1px dashed #475062
}

/* disclaimer */
.disclaimer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #3a3f48;
    font-size: 12px;
    color: #9aa3b3
}

/* ---------- STICKY SUB-FOOTER ---------- */
.sub-footer {
    background-image: url('../images/gradient.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: sticky;
    bottom: 0;
    z-index: 10;
    color: #9fa6b6;
    font-size: 12px;
    padding: 10px 14px;
    border-radius: 10px 10px 0 0;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.sub-footer .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #465062;
    opacity: .8
}


/* ---------- BENEFITS (PL→EN) ---------- */
.pl-benefits {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff
}

.pl-benefits.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.pl-benefits h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700
}

.pl-benefits__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px
}

.pl-benefits__card {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background .15s ease, border-color .15s ease;
}

.pl-benefits__card:hover {
    background: #20222a;
    border-color: #3a3e48;
}

.pl-benefits__icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: .9
}

.pl-benefits__card h4 {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.25
}

.pl-benefits__card p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .75)
}

.pl-benefits__trust {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, .85)
}

.pl-benefits__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.pl-benefits__badges span {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    font-weight: 600
}

@media (max-width:900px) {
    .pl-benefits__cards {
        grid-template-columns: 1fr
    }

    .pl-benefits__trust {
        flex-direction: column;
        align-items: flex-start
    }
}

:root {
    --bg: #2e0249;
    --panel: #1a1c23;
    --panel-2: #20222a;
    --text: #ececf1;
    --muted: #a1a7b3;
    --border: #2b2e36;
    --green: #10a37f;
    --green-2: #0e8e70;
}

html,
body {
    background: var(--bg);
    color: var(--text);
    margin: 0;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto auto 10% -20%;
    width: 60vw;
    height: 60vh;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(40% 40% at 30% 50%, rgba(16, 163, 127, .22), rgba(16, 163, 127, 0) 60%);
    filter: blur(45px);
    opacity: .25;
}

body::after {
    inset: -20% auto auto 60%;
    background: radial-gradient(40% 40% at 50% 50%, rgba(80, 120, 255, .15), rgba(80, 120, 255, 0) 60%);
}

.card,
.panel,
.box,
.official-footer,
.pl-benefits {
    background: var(--panel);
    border: 1px solid var(--border);
    color: var(--text);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .28);
    border-radius: 14px;
}

input,
select,
textarea {
    background: var(--panel);
    color: var(--text);
    border: 1px solid var(--border);
    outline: none;
    border-radius: 10px;
}

input::placeholder,
textarea::placeholder {
    color: rgba(226, 229, 236, .55);
}

input:hover {
    border-color: #3a3e48;
}

input:focus {
    border-color: #4b5160;
    box-shadow: 0 0 0 2px rgba(16, 163, 127, .18);
}

button,
.btn,
input[type="submit"] {
    background: var(--green);
    border: 1px solid #0f9877;
    color: #03120e;
    font-weight: 700;
    border-radius: 10px;
    transition: transform .12s ease, box-shadow .12s ease;
}

button:hover,
.btn:hover,
input[type="submit"] {
    background: var(--green-2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
}

* {
    scrollbar-width: thin;
    scrollbar-color: #3a3e48 #14161b;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: #3a3e48;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #14161b;
}

.official-offer {
    background: var(--panel, #1a1c23);
    border: 1px solid var(--border, #2b2e36);
    border-radius: 14px;
    padding: 20px;
    margin: 14px 0 18px;
    color: var(--text, #ececf1);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .24);
}

.official-offer h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
}

.official-offer .lead {
    margin: 0 0 12px;
    font-size: 14px;
    color: var(--muted, #a1a7b3);
}

.official-list {
    display: grid;
    gap: 8px;
}

.official-list .item {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    font-size: 14px;
}

.official-list .item strong {
    color: #fff;
}

.official-list .item span {
    color: var(--muted, #a1a7b3);
}