*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --blue: #0052e0;
    --blue-d: #003bb5;
    --blue-l: #dbeafe;
    --blue-xl: #eff6ff;
    --teal: #00bfa8;
    --green: #16a34a;
    --red: #dc2626;
    --amber: #f59e0b;
    --text: #0a0e1a;
    --sub: #374151;
    --muted: #6b7280;
    --light: #9ca3af;
    --border: #e5e7eb;
    --off: #f9fafb;
    --white: #ffffff;
    --display: "Plus Jakarta Sans", sans-serif;
    --body: "Plus Jakarta Sans", sans-serif;
    --mono: "JetBrains Mono", monospace;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 28px;
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, .06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07), 0 8px 24px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .08), 0 16px 48px rgba(0, 0, 0, .05);
    --shadow-blue: 0 8px 32px rgba(0, 82, 224, .2), 0 2px 8px rgba(0, 82, 224, .12);
    --shadow-blue-lg: 0 16px 56px rgba(0, 82, 224, .3), 0 4px 12px rgba(0, 82, 224, .15);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4.5vw, 52px)
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .18
    }
}

@keyframes pulse-ring {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 82, 224, .38)
    }

    70% {
        box-shadow: 0 0 0 12px rgba(0, 82, 224, 0)
    }
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes pop-in {
    from {
        opacity: 0;
        transform: scale(.88) translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

.reveal-l {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal-l.in {
    opacity: 1;
    transform: none
}

.reveal-r {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal-r.in {
    opacity: 1;
    transform: none
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    position: relative;
    background: linear-gradient(165deg, #020812 0%, #04091a 48%, #06102a 100%);
    padding: 3.5rem 0 4.5rem;
    overflow: hidden
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .07) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(ellipse 88% 72% at 50% 0%, #000 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 88% 72% at 50% 0%, #000 20%, transparent 100%)
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.orb-1 {
    top: -15%;
    right: -4%;
    width: clamp(400px, 55vw, 640px);
    height: clamp(400px, 55vw, 640px);
    background: radial-gradient(circle, rgba(0, 82, 224, .2) 0%, transparent 65%)
}

.orb-2 {
    bottom: -25%;
    left: -6%;
    width: clamp(320px, 42vw, 520px);
    height: clamp(320px, 42vw, 520px);
    background: radial-gradient(circle, rgba(0, 191, 168, .12) 0%, transparent 65%)
}

.orb-3 {
    top: 35%;
    left: 10%;
    width: clamp(180px, 24vw, 300px);
    height: clamp(180px, 24vw, 300px);
    background: radial-gradient(circle, rgba(124, 58, 237, .06) 0%, transparent 65%)
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(0, 82, 224, .16);
    border: 1px solid rgba(0, 82, 224, .38);
    color: rgba(148, 196, 255, .88);
    border-radius: 100px;
    padding: .32rem 1.05rem;
    font-family: var(--body);
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .75rem
}

.hero-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 2s infinite
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.6rem, 5.2vw, 4.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.055em;
    color: #fff;
    margin-bottom: 1.25rem
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(130deg, #60a5fa 0%, #a78bfa 48%, #00e5cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero p {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .44);
    line-height: 1.92;
    max-width: 52ch;
    margin: 0 auto 2.25rem
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap
}

.hs {
    text-align: center
}

.hs-val {
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1
}

.hs-lbl {
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .32);
    margin-top: .2rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

.hero-div {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .1)
}

/* ─── CONTACT SECTION ────────────────────────────────────── */
.contact-sec {
    padding: 2rem 0 2rem;
    background: var(--white)
}

.contact-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: start
}

/* ── Info Panel ── */
.info-panel {
    position: sticky;
    top: calc(66px + 2rem)
}

.info-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    background: var(--blue-xl);
    color: var(--blue);
    border-radius: 100px;
    padding: .28rem .9rem;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem
}

.info-h2 {
    font-family: var(--display);
    font-size: clamp(1.65rem, 2.6vw, 2.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: var(--text);
    margin-bottom: .875rem
}

.info-desc {
    font-size: .92rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.92;
    margin-bottom: 2rem
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 1.75rem
}

.cm {
    display: flex;
    align-items: center;
    gap: .875rem;
    padding: 1rem 1.25rem;
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    transition: border-color .18s, box-shadow .18s, transform .18s;
    cursor: default
}

.cm:hover {
    border-color: rgba(0, 82, 224, .28);
    box-shadow: var(--shadow-blue);
    transform: translateX(5px)
}

.cm-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0
}

.cm-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--light);
    margin-bottom: .15rem
}

.cm-value {
    font-size: .87rem;
    font-weight: 600;
    color: var(--text)
}

.cm-value a {
    color: var(--text);
    transition: color .14s
}

.cm-value a:hover {
    color: var(--blue)
}

.response-tag {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .875rem 1.1rem;
    background: rgba(22, 163, 74, .05);
    border: 1.5px solid rgba(22, 163, 74, .18);
    border-radius: var(--r-md);
    margin-bottom: 2rem
}

.rt-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: blink 1.8s infinite;
    flex-shrink: 0
}

.rt-text {
    font-size: .79rem;
    color: #15803d;
    line-height: 1.6
}

.rt-text strong {
    font-weight: 700;
    font-size: .83rem
}

.socials-head {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: .875rem
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .48rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
    background: var(--white);
    transition: border-color .16s, color .16s, box-shadow .16s, transform .14s
}

.soc-btn:hover {
    border-color: rgba(0, 82, 224, .3);
    color: var(--blue);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px)
}

.soc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0
}

/* ── Form Card ── */
.form-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    background: var(--off)
}

.fh-left h3 {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--text);
    margin-bottom: .18rem
}

.fh-left p {
    font-size: .76rem;
    color: var(--muted)
}

.online-badge {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    background: rgba(22, 163, 74, .08);
    border: 1px solid rgba(22, 163, 74, .22);
    color: #15803d;
    border-radius: 100px;
    padding: .24rem .7rem;
    font-size: .65rem;
    font-weight: 700
}

.online-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    animation: blink 1.8s infinite
}

.form-body {
    padding: 2rem
}

.fg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.fgroup {
    display: flex;
    flex-direction: column;
    gap: .42rem
}

.fgroup.span-2 {
    grid-column: 1/-1
}

.flabel {
    font-size: .74rem;
    font-weight: 700;
    color: var(--sub);
    letter-spacing: -.005em
}

.flabel sup {
    color: var(--blue);
    font-size: .8em
}

.finput,
.fselect,
.ftextarea {
    font-family: var(--body);
    font-size: .875rem;
    font-weight: 400;
    color: var(--text);
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: .78rem 1rem;
    width: 100%;
    outline: none;
    transition: border-color .18s, box-shadow .18s, background .18s;
    -webkit-appearance: none;
    appearance: none;
    letter-spacing: -.01em
}

.finput:focus,
.fselect:focus,
.ftextarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 82, 224, .09);
    background: var(--white)
}

.finput::placeholder,
.ftextarea::placeholder {
    color: #c0cad6;
    font-weight: 400
}

.ftextarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.7
}

.fselect {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .95rem center;
    padding-right: 2.4rem;
    cursor: pointer
}

.finput.err,
.fselect.err,
.ftextarea.err {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .08)
}

.fcheck-wrap {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    padding: .25rem 0
}

.fcheck {
    width: 16px;
    height: 16px;
    border-radius: 5px;
    border: 1.5px solid var(--border);
    flex-shrink: 0;
    cursor: pointer;
    margin-top: 2px;
    accent-color: var(--blue)
}

.fcheck-lbl {
    font-size: .77rem;
    color: var(--muted);
    line-height: 1.65;
    cursor: pointer
}

.fcheck-lbl a {
    color: var(--blue);
    font-weight: 600
}

.form-footer {
    padding: 0 2rem 2rem
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    font-family: var(--body);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: -.015em;
    color: #fff;
    background: linear-gradient(135deg, #0040cc 0%, #3730d4 52%, #5758f0 100%);
    border: none;
    border-radius: var(--r-md);
    padding: 1rem 2rem;
    cursor: pointer;
    transition: transform .14s, box-shadow .18s;
    box-shadow: 0 6px 28px rgba(0, 64, 204, .42), inset 0 1px 0 rgba(255, 255, 255, .13)
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 42px rgba(0, 64, 204, .58), inset 0 1px 0 rgba(255, 255, 255, .13)
}

.submit-btn:active {
    transform: none
}

.btn-arrow {
    display: inline-block;
    transition: transform .2s
}

.submit-btn:hover .btn-arrow {
    transform: translateX(4px)
}

.submit-note {
    text-align: center;
    font-size: .72rem;
    color: var(--light);
    margin-top: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .38rem
}

.submit-note::before {
    content: '🔒';
    font-size: .7rem
}

/* success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3.5rem 2rem;
    gap: 1.1rem
}

.success-ring {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #0891b2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 10px 36px rgba(22, 163, 74, .38);
    animation: pop-in .5s cubic-bezier(.34, 1.56, .64, 1)
}

.form-success h3 {
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--text)
}

.form-success p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 34ch
}

.success-tag {
    font-family: var(--mono);
    font-size: .68rem;
    color: var(--blue);
    background: var(--blue-xl);
    border-radius: 8px;
    padding: .38rem .875rem;
    margin-top: .25rem
}

/* ─── TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative
}

.trust-strip::before,
.trust-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.trust-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--off), transparent)
}

.trust-strip::after {
    right: 0;
    background: linear-gradient(-90deg, var(--off), transparent)
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 28s linear infinite
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: 0 2rem;
    font-size: .79rem;
    font-weight: 600;
    color: var(--muted)
}

.ticker-item svg {
    width: 13px;
    height: 13px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-sec {
    padding: 6.5rem 0;
    background: linear-gradient(180deg, var(--off) 0%, #edf2ff 100%);
    border-top: 1px solid var(--border)
}

.sec-head {
    text-align: center;
    margin-bottom: 3rem
}

.sec-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    background: var(--blue-xl);
    color: var(--blue);
    border-radius: 100px;
    padding: .28rem .9rem;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.sec-head h2 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.045em;
    color: var(--text);
    margin-bottom: .75rem
}

.sec-head p {
    font-size: .94rem;
    color: var(--muted);
    max-width: 50ch;
    margin: 0 auto;
    line-height: 1.9
}

.faq-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .875rem;
    max-width: 920px;
    margin: 0 auto
}

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: border-color .16s, box-shadow .16s
}

.faq-item.open {
    border-color: rgba(0, 82, 224, .3);
    box-shadow: 0 4px 24px rgba(0, 82, 224, .1)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.375rem;
    cursor: pointer;
    user-select: none;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--blue-xl);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: background .14s, transform .24s
}

.faq-item.open .faq-icon {
    background: var(--blue);
    color: #fff;
    transform: rotate(45deg)
}

.faq-a {
    display: none;
    padding: 0 1.375rem 1.1rem;
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.88
}

.faq-item.open .faq-a {
    display: block
}

/* ─── CHAT FLOAT ─────────────────────────────────────────── */
.chat-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 300;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .625rem
}

.chat-tip {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px 16px 4px 16px;
    padding: .8rem 1.1rem;
    font-size: .81rem;
    font-weight: 500;
    color: var(--text);
    box-shadow: var(--shadow-md);
    max-width: 210px;
    line-height: 1.55;
    animation: pop-in .45s cubic-bezier(.34, 1.56, .64, 1) 1.2s both;
    position: relative
}

.chat-tip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--border)
}

.chat-tip::before {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid var(--white);
    z-index: 1
}

.chat-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 6px 24px rgba(0, 82, 224, .44);
    animation: pulse-ring 2.8s infinite;
    transition: transform .14s
}

.chat-btn:hover {
    transform: scale(1.1)
}

.chat-notif {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--red);
    border: 2px solid var(--white);
    font-size: .52rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:1020px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .info-panel {
        position: static
    }
}

@media(max-width:680px) {
    .fg {
        grid-template-columns: 1fr
    }

    .fgroup.span-2 {
        grid-column: 1
    }

    .faq-cols {
        grid-template-columns: 1fr
    }

    .form-body,
    .form-footer {
        padding: 1.5rem
    }

    .form-header {
        padding: 1.25rem 1.5rem
    }

    .hero-stats {
        gap: 1.5rem
    }
}