:root {
    --purple: #6561a8;
    --purple2: #7974b8;
    --purpleDark: #4c487f;
    --orange: #d08516;
    --text: #20212a;
    --copy: #5d606b;
    --muted: #8b8d95;
    --line: #e8e8ed;
    --soft: #f7f7f9;
    --softPurple: #f1f0f8;
    --white: #fff;
    --header: 82px;
    --shell: 1180px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header)
}

html, body {
    margin: 0;
    padding: 0
}

body {
    background: #fff;
    color: var(--text);
    font-family: Arial,Helvetica,sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

a {
    color: inherit;
    text-decoration: none
}

button, input, textarea, select {
    font: inherit
}

button {
    cursor: pointer
}

.main {
    overflow: hidden
}

.header-shell,
.section-shell,
.hero-inner,
.footer-shell {
    width: min(calc(100% - 48px),var(--shell));
    margin-inline: auto;
}

.section {
    padding: 104px 0
}

.section-heading {
    margin-bottom: 50px;
}

    .section-heading h2,
    .content-copy h2,
    .about-copy h2,
    .expert-inner h2,
    .contact-heading h2 {
        margin: 0;
        color: var(--text);
        font-size: clamp(38px,4.6vw,62px);
        line-height: 1.04;
        letter-spacing: -.045em;
        font-weight: 700;
    }

.overline {
    display: block;
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(0,0,0,.07);
}

.header-shell {
    height: var(--header);
    display: grid;
    grid-template-columns: 180px 1fr 85px;
    align-items: center;
    gap: 25px;
}

.brand img {
    width: 150px;
    max-height: 42px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

    .main-nav a {
        position: relative;
        padding: 30px 0 27px;
        color: #555763;
        font-size: 13px;
        font-weight: 700;
    }

        .main-nav a:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 19px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg,var(--purple),var(--orange));
            transition: width .2s ease;
        }

        .main-nav a:hover {
            color: var(--purple)
        }

            .main-nav a:hover:after {
                width: 100%
            }

.lang-toggle {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    color: #a0a1a8;
}

    .lang-toggle i {
        font-style: normal;
        color: #c5c6ca
    }

    .lang-toggle:not(.is-en) .lang-tr,
    .lang-toggle.is-en .lang-en {
        color: var(--purple)
    }

/* BUTTON */
.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
}

.btn-primary {
    background: var(--purple);
    color: #fff
}

    .btn-primary:hover {
        background: var(--purpleDark)
    }

.btn-outline {
    border: 1px solid rgba(101,97,168,.35);
    background: #fff;
    color: var(--purple)
}

.btn-light {
    background: #fff;
    color: var(--purpleDark)
}

/* HERO */
.hero {
    padding: calc(var(--header) + 42px) 0 48px;
    min-height: 760px;
    background: #f8f7fb;
}

.hero-inner {
    min-height: 630px;
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: 30px;
}

.hero-copy {
    position: relative;
    z-index: 2
}

    .hero-copy h1 {
        max-width: 620px;
        margin: 0;
        font-size: clamp(46px,5.6vw,76px);
        line-height: 1.02;
        letter-spacing: -.052em;
        font-weight: 700;
    }

    .hero-copy p {
        max-width: 590px;
        margin: 27px 0 0;
        color: var(--copy);
        font-size: 17px;
    }

    .hero-copy strong {
        display: block;
        margin-top: 7px;
        color: var(--purple);
        font-size: 16px;
    }

.hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.watch-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.watch-dot {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(101,97,168,.28);
    border-radius: 50%;
    color: var(--purple);
    font-size: 11px;
}

.hero-art {
    position: relative;
    min-height: 610px;
    display: grid;
    place-items: center;
}

.hero-art-main {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 610px;
    object-fit: contain;
}

.hero-art-float {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 45px;
    width: 42%;
    max-height: 270px;
    object-fit: contain;
}

/* GLANCE */
.glance-section {
    background: #fff
}

.glance-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 64px;
    align-items: start;
}

.glance-card {
    min-width: 0;
    padding: 0;
    border: 0;
    display: grid;
    grid-template-rows: 300px auto;
    align-content: start;
}

.glance-image {
    width: 100%;
    height: 300px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .glance-image img {
        display: block;
        width: 82%;
        height: 82%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center;
    }

.glance-card h3 {
    position: static;
    margin: 26px 0 13px;
    color: var(--purpleDark);
    font-size: 23px;
    line-height: 1.2;
}

.glance-card p {
    position: static;
    margin: 0;
    color: var(--copy);
    font-size: 14px;
}

.glance-card strong {
    display: block;
    margin-top: 12px;
    color: var(--purple);
    font-size: 13px;
}

/* METHODS */
.methods-section {
    background: var(--soft)
}

.methods-layout {
    display: grid;
    grid-template-columns: 1fr .92fr;
    align-items: center;
    gap: 75px;
}

.methods-copy > h2 {
    margin: 0 0 45px;
    font-size: clamp(38px,4.6vw,62px);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.method-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 42px;
    border: 0;
}

    .method-list article {
        min-height: 150px;
        padding: 0;
        border: 0;
    }

    .method-list h3 {
        margin: 0 0 9px;
        color: var(--purpleDark);
        font-size: 17px;
        line-height: 1.25;
    }

    .method-list p {
        margin: 0;
        color: var(--copy);
        font-size: 13px;
    }

.methods-art {
    display: grid;
    place-items: center;
}

    .methods-art img {
        width: 100%;
        max-height: 680px;
        object-fit: contain;
    }

/* WALLET / TELEMETRY */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wallet-section {
    background: #fff
}

.wallet-visual {
    min-height: 460px;
    display: grid;
    place-items: center;
    background: var(--softPurple);
}

    .wallet-visual img {
        width: 80%;
        max-height: 380px;
        object-fit: contain;
    }

.content-copy h2 {
    margin-bottom: 28px
}

.bullet-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

    .bullet-columns ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .bullet-columns li {
        position: relative;
        padding: 12px 0 12px 20px;
        border-bottom: 1px solid var(--line);
        color: var(--copy);
        font-size: 14px;
    }

        .bullet-columns li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 21px;
            width: 6px;
            height: 6px;
            background: var(--orange);
            border-radius: 50%;
        }

.telemetry-section {
    background: var(--purpleDark);
    color: #fff;
}

    .telemetry-section h2 {
        color: #fff
    }

    .telemetry-section .content-copy p {
        color: rgba(255,255,255,.73);
        font-size: 15px;
    }

.telemetry-features {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

    .telemetry-features span {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,.13);
        color: rgba(255,255,255,.85);
        font-size: 13px;
    }

.telemetry-image {
    padding: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
}

    .telemetry-image img {
        width: 100%
    }

/* LOGOS */
.logos-section {
    background: #fff
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    /*border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);*/
}

    .bank-grid img {
        width: 100%;
        height: 200px;
        padding: 25px;
        object-fit: contain;
        /*border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);*/
    }

.partner-section {
    background: var(--soft)
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 44px;
    align-items: center;
}

    .partner-grid img {
        display: block;
        width: 100%;
        height: 150px;
        padding: 8px 0;
        object-fit: contain;
        object-position: center;
        background: transparent;
        border: 0;
    }

/* ABOUT */
.about-section {
    background: #f5f2eb
}

.about-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.about-copy h2 {
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.about-copy h3 {
    margin: 0 0 20px;
    font-size: clamp(38px,4.6vw,60px);
    line-height: 1.04;
    letter-spacing: -.04em;
}

.about-copy p {
    max-width: 550px;
    color: var(--copy);
}

.about-list {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 38px;
    border: 0;
}

    .about-list li {
        min-height: 64px;
        display: flex;
        align-items: center;
        padding: 0;
        border: 0;
        color: var(--purpleDark);
        font-size: 14px;
        font-weight: 700;
    }

.about-logo {
    min-height: 360px;
    display: grid;
    place-items: center;
    background: #fff;
}

    .about-logo img {
        width: 72%;
    }

/* FEATURED */
.featured-section {
    background: #fff
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}

.featured-card {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    background: #444;
}

    .featured-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .featured-card:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,rgba(31,30,40,.72),transparent 65%);
    }

    .featured-card h3 {
        position: absolute;
        z-index: 2;
        left: 24px;
        right: 24px;
        bottom: 23px;
        margin: 0;
        color: #fff;
        font-size: 22px;
        line-height: 1.1;
    }

/* REFERENCES */
.references-section {
    background: #fff
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(6,minmax(0,1fr));
    gap: 30px 40px;
    align-items: center;
}

    .reference-grid img {
        display: block;
        width: 100%;
        height: 116px;
        padding: 6px;
        object-fit: contain;
        object-position: center;
        border: 0;
        background: transparent;
        filter: grayscale(1);
        opacity: .68;
        transition: filter .2s ease,opacity .2s ease,transform .2s ease;
    }

        .reference-grid img:hover {
            filter: none;
            opacity: 1;
            transform: translateY(-2px) scale(1.04);
        }

.reference-extra {
    display: none
}

.reference-grid.is-expanded .reference-extra {
    display: block
}

.reference-action {
    margin-top: 32px;
    text-align: center;
}

/* EXPERT */
.expert-section {
    padding: 80px 0;
    background: linear-gradient(135deg,var(--purpleDark),var(--purple));
    color: #fff;
}

.expert-inner {
    text-align: center
}

    .expert-inner p {
        margin: 0 0 8px;
        color: rgba(255,255,255,.7);
    }

    .expert-inner h2 {
        margin: 0 0 27px;
        color: #fff;
    }

/* CONTACT */
.contact-section {
    background: #fff
}

.contact-heading {
    margin-bottom: 45px
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: start;
}

.contact-form-panel {
    padding: 36px;
    background: var(--soft);
    border: 1px solid var(--line);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .field label,
    .message-label {
        color: #5a5c65;
        font-size: 12px;
        font-weight: 700;
    }

.field-message {
    grid-column: 1/-1
}

.message-label {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

    .message-label span {
        color: #999ba2;
        font-weight: 400;
    }

.input {
    width: 100%;
    min-height: 50px;
    padding: 12px 13px;
    border: 1px solid #dadbe0;
    border-radius: 0;
    outline: 0;
    background: #fff;
    color: var(--text);
}

    .input:focus {
        border-color: var(--purple);
        box-shadow: 0 0 0 3px rgba(101,97,168,.08);
    }

textarea.input {
    min-height: 140px;
    resize: vertical;
}

.send-button {
    min-width: 145px;
    min-height: 50px;
    margin-top: 20px;
    padding: 0 25px;
    border: 0;
    border-radius: 0;
    background: var(--purple);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

    .send-button:hover {
        background: var(--purpleDark)
    }

    .send-button:disabled {
        opacity: .65;
        cursor: wait
    }

.form-result {
    min-height: 22px;
    margin-top: 12px;
    color: var(--purple);
    font-size: 13px;
    font-weight: 700;
}

    .form-result.is-error {
        color: #b74444
    }

.contact-map {
    overflow: hidden;
    border: 1px solid var(--line);
}

    .contact-map iframe {
        display: block;
        width: 100%;
        height: 340px;
        border: 0;
    }

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
}

    .contact-details article {
        min-height: 116px;
        padding: 18px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

        .contact-details article:last-child {
            grid-column: 1/-1
        }

    .contact-details h3 {
        margin: 0 0 6px;
        color: var(--orange);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .contact-details a,
    .contact-details p {
        margin: 0;
        color: var(--purpleDark);
        font-size: 13px;
        font-weight: 700;
    }

/* =========================
   FOOTER
   ========================= */

.site-footer {
    width: 100%;
    padding: 28px 0;
    background: #272635;
    color: rgba(255,255,255,.72);
    font-size: 12px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-inner p {
    margin: 0;
    color: rgba(255,255,255,.72);
}

.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: #fff;
}


/* RESPONSIVE */
@media(max-width:1100px) {
    .main-nav {
        gap: 20px
    }

    .bank-grid {
        grid-template-columns: repeat(4,1fr)
    }

    .reference-grid {
        grid-template-columns: repeat(4,1fr)
    }

    .featured-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:820px) {
    :root {
        --header: 72px
    }

    .header-shell, .section-shell, .hero-inner, .footer-shell {
        width: min(calc(100% - 28px),var(--shell));
    }

    .section {
        padding: 76px 0
    }

    .header-shell {
        grid-template-columns: 135px 1fr 64px;
        gap: 12px;
    }

    .brand img {
        width: 120px
    }

    .main-nav {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 20px;
    }

        .main-nav::-webkit-scrollbar {
            display: none
        }

        .main-nav a {
            flex: 0 0 auto;
            font-size: 12px
        }

    .hero-inner,
    .methods-layout,
    .two-column,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center
    }

    .hero-actions {
        justify-content: center
    }

    .hero-art {
        min-height: 450px
    }

    .glance-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .glance-card {
        grid-template-rows: 260px auto
    }

    .glance-image {
        height: 260px;
        margin: 0;
    }

    .method-list {
        grid-template-columns: 1fr 1fr
    }

    .about-list {
        grid-template-columns: 1fr 1fr
    }

    .partner-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .bank-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .reference-grid {
        grid-template-columns: repeat(3,1fr)
    }
}

@media(max-width:700px) {
    .site-header {
        position: static
    }

    .header-shell {
        min-height: 72px;
        height: auto;
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        grid-column: 1/-1;
        order: 3;
        padding-bottom: 10px;
    }

    .hero {
        padding-top: 55px;
        min-height: 0
    }

    .hero-copy h1 {
        font-size: 44px
    }

    .hero-art {
        min-height: 330px
    }

    .hero-actions {
        flex-direction: column
    }

    .glance-card {
        padding: 0
    }

    .method-list,
    .bullet-columns,
    .about-list,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: 1fr
    }

    .partner-grid,
    .bank-grid,
    .reference-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .field-message {
        grid-column: auto
    }

    .contact-form-panel {
        padding: 24px 18px
    }

   

    .site-footer {
        padding: 24px 0;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }
}
