﻿:root {
    --blue: #073c7d;
    --blue-2: #176bc4;
    --navy: #031a37;
    --navy-2: #071d38;
    --ink: #0b2139;
    /*--muted: #617488;*/

    --muted: #53677c;
    --line: #d7e1eb;
    --pale: #edf4fb;
    --white: #fff;
    --radius: 12px;
    --shadow: 0 16px 40px rgba(7, 60, 125, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input {
    font: inherit;
}

button, summary {
    cursor: pointer;
}

img {
    max-width: 100%;
}

:focus-visible {
    outline: 3px solid #74b9ff;
    outline-offset: 3px;
}

.container {
    width: min(1400px, calc(100% - 64px));
    margin-inline: auto;
}

.section {
    padding-block: 96px;
}

.dark-section {
    color: white;
    background: var(--navy);
}

.eyebrow {
    display: block;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.light .eyebrow, .dark-section .eyebrow {
    color: #8fc8ff;
}

.saas-intro {
    display: block;
    width: 100%;
    max-width: 652px;
    height: auto;
}

.section-intro {
    /*max-width: 900px;*/
}

    .section-intro.wide {
        max-width: 1080px;
    }

    .section-intro h2 {
        /* margin: 18px 0 22px;*/
        margin: 0px 18px 10px -5px;
        font-size: clamp(45px, 2.3vw, 74px);
        font-weight: 520;
        letter-spacing: -.058em;
        line-height: 1.04;
        text-wrap: balance;
    }

    .section-intro p {
        /*max-width: 780px;*/
        margin: 0;
        color: var(--muted);
        font-size: 19px;
        line-height: 1.65;
    }

    .section-intro.light p {
        color: #b8c9dc;
    }

.site-header {
    position: fixed;
    z-index: 50;
    inset: 0 0 auto;
    height: 106px;
    padding-inline: max(32px, calc((100vw - 1422px) / 2));
    /*padding-inline: max(32px, calc((100vw - 1520px) / 2));*/
    border-bottom: 1px solid rgba(255,255,255,.14);
    background: rgba(3,26,55,.94);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: background .2s, box-shadow .2s, border-color .2s;
}

    .site-header.scrolled {
        background: rgba(3,26,55,.99);
        border-color: rgba(116,185,255,.3);
        box-shadow: 0 14px 42px rgba(0,8,22,.28);
    }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    white-space: nowrap;
}

    .brand strong {
        font-size: 24px;
        letter-spacing: -.04em;
    }

    .brand small {
        font-size: 14px;
        font-weight: 760;
        letter-spacing: .1em;
    }

.brand-divider {
    width: 1px;
    height: 25px;
    background: rgba(255,255,255,.35);
}

.brand-mark {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 9px;
    background: white;
    overflow: hidden;
}

    .brand-mark i {
        position: absolute;
        top: 1px;
        width: 7px;
        height: 46px;
        border-radius: 5px;
        background: var(--blue);
        transform: rotate(25deg);
    }

        .brand-mark i:first-child {
            left: 13px;
        }

        .brand-mark i:last-child {
            right: 13px;
            transform: rotate(-25deg);
        }

.site-header nav {
    display: flex;
    align-items: center;
    gap: 42px;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    font-weight: 620;
}

    .site-header nav a, .login {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        border-bottom: 1px solid transparent;
        transition: color .2s, border-color .2s;
    }

        .site-header nav a:hover, .login:hover {
            color: white;
            border-color: rgba(255,255,255,.6);
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.login {
    color: rgba(255,255,255,.8);
    font-size: 15px;
}

.languages {
    height: 50px;
    padding: 5px 6px 5px 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    color: rgba(255,255,255,.72);
}

    .languages > span {
        margin-right: 5px;
    }

    .languages button {
        width: 39px;
        height: 38px;
        border: 0;
        border-radius: 7px;
        background: transparent;
        color: rgba(255,255,255,.6);
        font-size: 11px;
        font-weight: 800;
    }

        .languages button:hover {
            color: white;
        }

        .languages button.active {
            color: var(--blue);
            background: white;
        }

.button {
    min-height: 60px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    font-size: 15px;
    font-weight: 740;
    transition: transform .2s, color .2s, background .2s, border-color .2s, box-shadow .2s;
}

    .button:hover {
        transform: translateY(-2px);
    }

.button-primary {
    color: white;
    background: var(--blue-2);
    box-shadow: 0 12px 28px rgba(23,107,196,.25);
}

    .button-primary:hover {
        background: #2480df;
    }

.button-secondary {
    color: white;
    border-color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.05);
}

    .button-secondary:hover {
        background: white;
        color: var(--blue);
    }

.button-light {
    color: var(--blue);
    background: white;
}

.header-cta {
    min-height: 60px;
}

.hero {
    position: relative;
    min-height: 850px;
    padding: 166px 32px 70px;
    overflow: hidden;
}

    .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .11;
        background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
        background-size: 70px 70px;
    }

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    right: -200px;
    top: -220px;
    border-radius: 50%;
    background: rgba(39,125,218,.2);
    filter: blur(70px);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.80fr;
    gap: clamp(48px, 5vw, 78px);
    align-items: center;
}

.hero-copy {
    z-index: 2;
    position: relative;
    background: rgba(4, 27, 55, 1.0);
    background: radial-gradient( circle at center, rgba(4, 27, 55, 1.0) 0%, rgba(4, 27, 55, 1.0) 65%, rgba(4, 27, 55, 0.0) 100% );
}

.hero-copy h1 {
    max-width: 800px;
    margin: 24px 0;
    font-size: clamp(62px, 3.5vw, 90px);
    font-weight: 520;
    letter-spacing: -.064em;
    line-height: 1.01;
    text-wrap: balance;
}

.hero-text {
    max-width: 750px;
    margin: 0;
    color: #c4d2e3;
    font-size: 20px;
    line-height: 1.65;
    padding-bottom: 25px;
}

.release {
    width: max-content;
    max-width: 100%;
    min-height: 43px;
    margin: 0;
    padding: 6px 16px 6px 7px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bfd0e2;
    font-size: 12px;
}

    .release b {
        padding: 6px 10px;
        border-radius: 999px;
        color: #9bd2ff;
        background: rgba(69,148,229,.15);
        font-size: 10px;
        animation: release-pulse 2s ease-in-out infinite;
    }

@keyframes release-pulse {
    0%, 100% {
        background: rgba(69, 148, 229, 0.15);
    }

    50% {
        background: rgba(69, 148, 229, 0.25);
    }
}
}
.button-row {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.assurances {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    color: #aabdd1;
    font-size: 14px;
}

    .assurances li:before {
        content: "";
        width: 6px;
        height: 6px;
        margin-right: 9px;
        border-radius: 50%;
        display: inline-block;
        background: #6ec1ff;
    }

.hero-proof {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.14);
    /*display: flex;*/
    /*align-items: center;*/
    /*gap: 15px;*/
    color: #adc0d5;
}
/*
    .hero-proof strong {
        color: white;
        font-size: 31px;
        line-height: 1;
        letter-spacing: -.05em;
    }
*/
    .hero-proof span {
   /*     max-width: 380px;*/
        font-size: 15px;
    }

.workflow-card {
    min-height: 620px;
    padding: 34px;
    border: 1px solid rgba(135,192,255,.35);
    border-radius: var(--radius);
    background: #f8fbff;
    color: var(--ink);
    box-shadow: 0 34px 90px rgba(0,6,18,.45);
}

.workflow-head {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    color: var(--blue);
    font-size: 12px;
    font-weight: 780;
    letter-spacing: .08em;
}

    .workflow-head b {
        color: #74879c;
    }

.workflow-card > h2 {
    max-width: 580px;
    margin: 28px 0 24px;
    font-size: clamp(35px, 3vw, 48px);
    font-weight: 560;
    line-height: 1.07;
    letter-spacing: -.05em;
}

.person-row {
    min-height: 76px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: white;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 14px;
}

    .person-row > span, .person-row > i {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: var(--blue);
        background: #dcecff;
        font-size: 13px;
        font-style: normal;
        font-weight: 780;
    }

    .person-row > i {
        border: 4px solid #2e7bce;
        border-left-color: #d5e3f2;
        background: white;
    }

    .person-row div {
        display: grid;
        gap: 3px;
    }

    .person-row b {
        font-size: 16px;
    }

    .person-row small {
        color: #718397;
        font-size: 13px;
    }

.workflow-list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

    .workflow-list li {
        min-height: 83px;
        padding: 12px 15px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: white;
        display: grid;
        grid-template-columns: 42px 1fr;
        align-items: center;
        gap: 10px;
    }

        .workflow-list li > strong {
            color: var(--blue);
            font-size: 22px;
            letter-spacing: -.04em;
        }

        .workflow-list li div {
            display: grid;
            gap: 4px;
        }

    .workflow-list small {
        color: #64809c;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .09em;
    }

    .workflow-list p {
        margin: 0;
        font-size: 15px;
        line-height: 1.4;
    }

    .workflow-list .recommended {
        border-color: #3483d8;
        background: #edf6ff;
        box-shadow: inset 3px 0 #2374ce;
    }

.ready {
    min-height: 46px;
    margin-top: 12px;
    padding: 0 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    background: var(--blue);
    font-size: 11px;
    letter-spacing: .06em;
}

    .ready b {
        color: #bcd9f7;
    }

.trust {
    padding-block: 48px 56px;
    background: var(--pale);
}

.trust-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

    .trust-head h2 {
        margin: 0;
        font-size: 25px;
        letter-spacing: -.03em;
    }

    .trust-head p {
        margin: 0;
        color: var(--muted);
        font-size: 15px;
    }

.logo-grid {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid #d1deea;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 11px;
}

    .logo-grid span {
        min-height: 100px;
        padding: 20px;
        border: 1px solid #d4e0ec;
        border-radius: var(--radius);
        background: rgba(255,255,255,.75);
        display: grid;
        place-items: center;
        overflow: hidden;
        transition: transform .2s, box-shadow .2s, background .2s;
    }

        .logo-grid span:hover {
            transform: translateY(-3px);
            background: white;
            box-shadow: var(--shadow);
        }

    .logo-grid img {
        width: 100%;
        max-width: 165px;
        height: 54px;
        object-fit: contain;
        /*filter: grayscale(1) brightness(.52) contrast(1.2);*/
        /*mix-blend-mode: multiply;*/
    }

    .logo-grid span:nth-child(3) img, .logo-grid span:nth-child(4) img, .logo-grid span:nth-child(6) img {
        transform: scale(1.2);
    }

    .logo-grid span:nth-child(9) img {
        filter: grayscale(1) brightness(.3) contrast(1.5);
    }

.comparison-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.comparison-card {
    min-height: 430px;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

    .comparison-card header {
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 20px;
    }

    .comparison-card h3 {
        margin: 0;
        font-size: 17px;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .comparison-card header span {
        padding: 7px 10px;
        border: 1px solid currentColor;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 760;
    }

.traditional {
    color: #53677c;
    background: #f2f5f8;
}

.ai-crm {
    color: white;
    background: var(--blue);
    box-shadow: 0 24px 65px rgba(7,60,125,.22);
}

.comparison-card ul {
    list-style: none;
    margin: 44px 0;
    padding: 0;
}

.comparison-card li {
    min-height: 74px;
    border-bottom: 1px solid rgba(91,111,132,.2);
    display: flex;
    align-items: center;
    gap: 17px;
    font-size: 18px;
}

.ai-crm li {
    border-color: rgba(255,255,255,.18);
}

.comparison-card li b {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(7,60,125,.08);
    color: var(--blue);
}

.ai-crm li b {
    color: #9ed2ff;
    background: rgba(255,255,255,.13);
}

.comparison-card > p {
    margin: auto 0 0;
    font-size: 13px;
    font-weight: 760;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.statement {
    min-height: 156px;
    margin-top: 14px;
    padding: 28px 36px;
    border-radius: var(--radius);
    background: var(--navy);
    color: white;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 30px;
}

    .statement small {
        color: #87afd7;
        font-size: 12px;
        letter-spacing: .14em;
    }

    .statement strong {
        font-size: clamp(26px, 2.5vw, 39px);
        font-weight: 450;
        line-height: 1.18;
        letter-spacing: -.04em;
    }

.section-action {
    min-height: 88px;
    margin-top: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

    .section-action p {
        margin: 0;
        color: var(--muted);
        font-size: 17px;
    }

    .section-action.on-dark {
        border-color: rgba(255,255,255,.2);
    }

        .section-action.on-dark p {
            color: #b8c9d9;
        }

.process {
    background: var(--pale);
}

.process-grid {
    list-style: none;
    margin: 48px 0 18px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

    .process-grid li {
        min-height: 215px;
        padding: 34px;
        border: 1px solid #d1deeb;
        border-radius: var(--radius);
        background: white;
        display: flex;
        flex-direction: column;
        box-shadow: var(--shadow);
    }

        .process-grid li > strong {
            color: var(--blue);
            font-size: 32px;
            line-height: 1;
            letter-spacing: -.05em;
        }

.step-icon {
    width: 60px;
    height: 60px;
    margin-top: 36px;
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    color: var(--blue);
    background: #e5f0fb;
    font-size: 33px;
    font-weight: 300;
}

.process-grid h3 {
    margin: auto 0 12px;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -.04em;
}

.process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.process-bar {
    min-height: 105px;
    padding: 20px 25px;
    border-radius: var(--radius);
    background: var(--blue);
    color: white;
    display: grid;
    grid-template-columns: 1.15fr repeat(3, 1fr);
    align-items: center;
    gap: 18px;
}

    .process-bar span {
        color: #a7ccef;
        font-size: 12px;
        letter-spacing: .12em;
    }

    .process-bar b {
        min-height: 55px;
        padding-left: 20px;
        border-left: 1px solid rgba(255,255,255,.18);
        display: flex;
        align-items: center;
        font-size: 16px;
    }

.ai-section {
    background: var(--navy);
    color: white;
}

.ai-demo {
    min-height: 500px;
    margin-top: 48px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: .88fr 1.42fr;
    overflow: hidden;
}

.ai-tabs {
    border-right: 1px solid rgba(255,255,255,.14);
    display: flex;
    flex-direction: column;
}

    .ai-tabs button {
        flex: 1;
        min-height: 102px;
        padding: 0 30px;
        border: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
        background: rgba(255,255,255,.025);
        color: #d0dae5;
        display: grid;
        grid-template-columns: 42px 1fr auto;
        align-items: center;
        text-align: left;
        transition: color .2s, background .2s;
    }

        .ai-tabs button:last-child {
            border-bottom: 0;
        }

        .ai-tabs button:hover {
            color: white;
            background: rgba(255,255,255,.075);
        }

        .ai-tabs button.active {
            color: white;
            background: var(--blue);
        }

        .ai-tabs button span {
            font-size: 12px;
        }

        .ai-tabs button b {
            font-size: 18px;
            font-weight: 580;
        }

        .ai-tabs button i {
            font-size: 20px;
            font-style: normal;
            font-weight: 300;
        }

.ai-panel {
    padding: 50px 58px;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at 92% 5%, rgba(31,108,203,.24), transparent 44%);
}

.ai-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .ai-panel-head span {
        color: #8fc8ff;
        font-size: 12px;
        font-weight: 760;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .ai-panel-head b {
        min-height: 45px;
        padding: 0 16px;
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        color: var(--blue);
        background: white;
        font-size: 11px;
        letter-spacing: .1em;
    }

.ai-panel h3 {
    max-width: 790px;
    margin: 58px 0 20px;
    font-size: clamp(40px, 4vw, 59px);
    font-weight: 480;
    line-height: 1.04;
    letter-spacing: -.055em;
}

.ai-panel > p {
    max-width: 760px;
    margin: 0;
    color: #c1cfdd;
    font-size: 18px;
    line-height: 1.6;
}

.ai-panel ul {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.ai-panel li {
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    color: #dae4ee;
    font-size: 14px;
}

.ai-panel > a {
    width: max-content;
    margin-top: auto;
    padding-bottom: 6px;
    border-bottom: 1px solid #80bfff;
    color: #add5ff;
    display: flex;
    gap: 36px;
    font-size: 15px;
    font-weight: 690;
}

.two-column {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 7vw;
    align-items: center;
}

.result-card {
    /*min-height: 470px;*/
    padding: 42px;
    border-radius: var(--radius);
    background: var(--blue);
    color: white;
    box-shadow: 0 28px 70px rgba(7,60,125,.22);
    display: flex;
    flex-direction: column;
    gap: 35px;
}

    .result-card img.avatar {
        border-radius: 50%;
        border: 3px solid white;
    }

.result-metric {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.2);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 18px;
}

    .result-metric strong {
        font-size: clamp(58px, 6vw, 86px);
        line-height: .85;
        letter-spacing: -.07em;
    }

    .result-metric span {
        max-width: 180px;
        font-size: 17px;
        font-weight: 650;
    }

    .result-metric b {
        max-width: 150px;
        color: #a9d2fb;
        font-size: 14px;
    }

.result-card blockquote {
    margin: 10px 0 0;
    font-size: clamp(25px, 2.5vw, 38px);
    font-weight: 380;
    line-height: 1.27;
    letter-spacing: -.035em;
}

.result-card footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 13px;
}

    .result-card footer > span {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: var(--blue);
        background: white;
        font-weight: 780;
    }

    .result-card footer p {
        margin: 0;
        display: grid;
        gap: 2px;
    }

    .result-card footer small {
        color: #b7cee6;
        font-size: 13px;
    }

    .result-card footer i {
        margin-left: auto;
        color: #b4d2ef;
        font-style: normal;
        font-weight: 760;
        letter-spacing: .08em;
    }

.data-section {
    background: var(--pale);
}

.data-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 2vw 7vw;
    align-items: center;
    position:relative;
}

.data-diagram {
    min-height: 440px;
    padding: 30px;
    border: 1px solid #d2dfea;
    border-radius: var(--radius);
    background: white;
    display: grid;
/*    grid-template-columns: 1fr 150px 1fr;*/
    gap: 20px;
    align-items: center;
}

    .data-diagram > div {
        display: grid;
        gap: 11px;
    }

    .data-diagram p {
        min-height: 70px;
        margin: 0;
        padding: 12px 14px;
        border: 1px solid var(--line);
        border-radius: 9px;
        display: grid;
        align-content: center;
    }

        .data-diagram p b {
            color: var(--blue);
            font-size: 13px;
            letter-spacing: .06em;
        }

        .data-diagram p span {
            color: var(--muted);
            font-size: 13px;
        }

    .data-diagram > strong {
        width: 145px;
        height: 145px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        background: var(--blue);
        font-size: 46px;
        line-height: 1;
        box-shadow: 0 18px 45px rgba(7,60,125,.22);
    }

        .data-diagram > strong small {
            color: #a7ccef;
            font-size: 10px;
            letter-spacing: .1em;
        }

        .data-diagram > strong i {
            margin-top: 8px;
            color: #b7d3ef;
            font-size: 8px;
            font-style: normal;
        }

.metric-grid {
    grid-column: 1 / 3;
    margin-top: 12px;
    border-block: 1px solid #cbd8e4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

    .metric-grid article {
        min-height: 145px;
        padding: 25px;
        border-right: 1px solid #cbd8e4;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .metric-grid article:last-child {
            border-right: 0;
        }

    .metric-grid strong {
        color: var(--blue);
        font-size: clamp(38px, 4vw, 58px);
        font-weight: 550;
        line-height: 1;
        letter-spacing: -.06em;
    }

    .metric-grid span {
        max-width: 250px;
        margin-top: 10px;
        color: var(--muted);
        font-size: 13px;
        font-weight: 650;
        line-height: 1.4;
        letter-spacing: .04em;
        text-transform: uppercase;
    }

.ecosystem {
    background: #f4f8fc;
}

.product-grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.product-card {
    min-height: 300px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

    .product-card:hover {
        transform: translateY(-5px);
        border-color: #96b8d9;
        box-shadow: 0 22px 48px rgba(7,60,125,.14);
    }

    .product-card.featured {
        grid-column: 1 / 3;
        color: white;
        background: var(--blue);
    }

    .product-card small {
        color: #71869c;
        font-size: 11px;
        font-weight: 760;
        letter-spacing: .11em;
    }

    .product-card.featured small {
        color: #a8cff5;
    }

    .product-card h3 {
        margin: auto 0 13px;
        font-size: 31px;
        font-weight: 560;
        letter-spacing: -.045em;
    }

    .product-card p {
        max-width: 650px;
        margin: 0 0 25px;
        color: var(--muted);
        font-size: 16px;
    }

    .product-card.featured p {
        color: #c1d6eb;
    }

    .product-card > span {
        padding-top: 15px;
        border-top: 1px solid var(--line);
        color: var(--blue);
        font-size: 14px;
        font-weight: 720;
    }

    .product-card.featured > span {
        border-color: rgba(255,255,255,.2);
        color: #b9ddff;
    }

.platform-shell {
    margin-top: 48px;
    padding: 30px;
    border: 1px solid #d4e0eb;
    border-radius: var(--radius);
    background: var(--pale);
}

    .platform-shell > header {
        min-height: 120px;
        padding: 25px 30px;
        border-radius: 10px;
        color: white;
        background: var(--blue);
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 18px 0;
    }

        .platform-shell > header span {
            color: #abd0f4;
            font-size: 13px;
            letter-spacing: .12em;
        }

        .platform-shell > header strong {
            font-size: 34px;
            letter-spacing: -.04em;
        }

        .platform-shell > header small {
            color: #bdd5ed;
            font-size: 11px;
            letter-spacing: .1em;
        }

.platform-flow {
    margin-top: 13px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: white;
}

    .platform-flow > small {
        color: var(--blue);
        font-size: 12px;
        font-weight: 760;
        letter-spacing: .12em;
    }

    .platform-flow ol {
        list-style: none;
        margin: 18px 0 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
    }

    .platform-flow li {
        min-height: 48px;
        padding-right: 30px;
        position: relative;
        display: flex;
        align-items: center;
        color: #536b82;
        font-size: 14px;
        font-weight: 670;
    }

        .platform-flow li:not(:last-child):after {
            content: "→";
            position: absolute;
            right: 12px;
            color: var(--blue-2);
            font-size: 18px;
        }

.platform-grid {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

    .platform-grid article {
        min-height: 275px;
        padding: 26px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: white;
    }

        .platform-grid article > span {
            color: #8293a5;
            font-size: 12px;
        }

    .platform-grid h3 {
        margin: 5px 0 18px;
        font-size: 22px;
        line-height: 1.2;
        letter-spacing: -.035em;
        min-height: 60px;
    }

    .platform-grid p {
        min-height: 37px;
        margin: 0;
        border-top: 1px solid #e8eef4;
        display: flex;
        align-items: center;
        color: var(--muted);
        font-size: 13px;
    }

.security {
    background: var(--navy-2);
}

.security-links {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

    .security-links a {
        min-height: 45px;
        border-bottom: 1px solid #77baff;
        color: #b9dcff;
        display: inline-flex;
        align-items: center;
        font-size: 14px;
        font-weight: 680;
    }

.security-list {
    border-top: 1px solid rgba(255,255,255,.17);
}

    .security-list article {
        min-height: 135px;
        padding: 25px 0;
        border-bottom: 1px solid rgba(255,255,255,.17);
        display: grid;
        grid-template-columns: 45px 1fr 34px;
        gap: 16px;
    }

        .security-list article > b {
            color: #748ba3;
            font-size: 12px;
        }

    .security-list h3 {
        margin: 0 0 8px;
        font-size: 21px;
    }

    .security-list p {
        max-width: 620px;
        margin: 0;
        color: #a9bacb;
        font-size: 16px;
        line-height: 1.55;
    }

    .security-list i {
        width: 31px;
        height: 31px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: #79bcff;
        background: rgba(121,188,255,.12);
        font-style: normal;
    }

.faq {
    width: min(1240px, calc(100% - 64px));
}

.faq-list {
    margin-top: 42px;
    border-top: 1px solid var(--line);
}

    .faq-list details {
        border-bottom: 1px solid var(--line);
    }

    .faq-list summary {
        min-height: 86px;
        padding: 15px 8px;
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 42px;
        align-items: center;
        font-size: 21px;
        font-weight: 610;
        transition: color .2s, background .2s, padding .2s;
    }

        .faq-list summary::-webkit-details-marker {
            display: none;
        }

        .faq-list summary:hover {
            padding-inline: 15px;
            color: var(--blue);
            background: #f4f8fc;
        }

        .faq-list summary i {
            width: 32px;
            height: 32px;
            justify-self: end;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: var(--blue);
            background: var(--pale);
            font-size: 24px;
            font-style: normal;
            font-weight: 350;
            transition: transform .2s;
            align-items: center;
            justify-content: center;
            grid-auto-flow: column;
            align-content: center;
        }

    .faq-list details[open] summary {
        color: var(--blue);
    }

        .faq-list details[open] summary i {
            transform: rotate(45deg);
        }

    .faq-list details > p {
        max-width: 900px;
        margin: -3px 0 28px 8px;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.7;
    }

.contact {
    background: var(--blue);
}

.contact-grid {
    grid-template-columns: 1.05fr .95fr;
}

.contact-points {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
    color: #d4e2f0;
    font-size: 16px;
}

    .contact-points li:before {
        content: "✓";
        margin-right: 10px;
        color: #9fd2ff;
    }

.contact-proof {
    margin-top: 38px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.22);
    display: flex;
    align-items: baseline;
    gap: 15px;
}

    .contact-proof strong {
        font-size: 40px;
        line-height: 1;
        letter-spacing: -.05em;
    }

    .contact-proof span {
        color: #c0d4e8;
        font-size: 15px;
    }

.demo-form {
    position: relative;
    width: 100%;
    max-width: 700px;
    justify-self: end;
    padding: 46px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: var(--radius);
    background: white;
    color: var(--ink);
    box-shadow: 0 34px 80px rgba(1,12,29,.35);
}

    .demo-form > header span {
        color: var(--blue);
        font-size: 12px;
        font-weight: 790;
        letter-spacing: .12em;
    }

    .demo-form > header h3 {
        margin: 8px 0 28px;
        font-size: 33px;
        line-height: 1.15;
        letter-spacing: -.04em;
    }

    .demo-form label {
        margin-bottom: 18px;
        display: grid;
        gap: 8px;
        color: #455d75;
        font-size: 13px;
        font-weight: 750;
        letter-spacing: .07em;
        text-transform: uppercase;
    }

    .demo-form input {
        width: 100%;
        min-height: 60px;
        padding: 0 15px;
        border: 1px solid #d6e0ea;
        border-radius: 8px;
        color: var(--ink);
        background: #fbfcfd;
        font-size: 16px;
        text-transform: none;
        outline: 0;
    }

        .demo-form input:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(7,60,125,.1);
        }

    .demo-form .submit {
        width: 100%;
        min-height: 65px;
        margin-top: 4px;
        border: 0;
    }

.after-submit {
    margin: 15px 0 6px;
    color: #4e6984;
    text-align: center;
    font-size: 13px;
}

.demo-form > small {
    display: block;
    color: #7c8b99;
    text-align: center;
    font-size: 12px;
}

.success {
    position: absolute;
    inset: 0;
    padding: 45px;
    border-radius: inherit;
    background: white;
    display: grid;
    place-content: center;
    text-align: center;
}

    .success[hidden] {
        display: none;
    }

    .success > b {
        width: 55px;
        height: 55px;
        margin: auto;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: var(--blue);
        background: var(--pale);
        font-size: 22px;
    }

    .success h3 {
        margin: 20px 0 5px;
        font-size: 30px;
    }

    .success p {
        margin: 0;
        color: var(--muted);
    }

.footer {
    padding: 0 0 30px;
    color: white;
    background: #021226;
}

.footer-grid {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.14);
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 7vw;
}

    .footer-grid > div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid .brand-mark {
        width: 48px;
        height: 48px;
    }

    .footer-grid > div:first-child > p {
        max-width: 300px;
        margin: 24px 0;
        color: #9fb0c1;
        font-size: 16px;
    }

    .footer-grid h3 {
        margin: 0 0 20px;
        font-size: 15px;
    }

    .footer-grid > div:not(:first-child) a {
        min-height: 38px;
        color: #95a7b9;
        display: flex;
        align-items: center;
        font-size: 14px;
    }

        .footer-grid > div:not(:first-child) a:hover {
            color: white;
        }

.footer-bottom {
    min-height: 76px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    color: #8396a9;
    font-size: 13px;
}

    .footer-bottom a:hover {
        color: white;
    }

@media (max-width: 1380px) {
    .site-header nav {
        display: none;
    }
}

@media (max-width: 1100px) {
    .container {
        width: min(900px, calc(100% - 56px));
    }

    .hero-grid, .two-column, .contact-grid, .data-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 830px;
    }

    .workflow-card {
        width: min(100%, 760px);
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ai-demo {
        grid-template-columns: 1fr;
    }

    .ai-tabs {
        border-right: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        .ai-tabs button {
            min-height: 78px;
            border-right: 1px solid rgba(255,255,255,.12);
        }

    .metric-grid {
        grid-column: auto;
    }

    .platform-grid {
        grid-template-columns: 1fr 1fr;
    }

    .platform-flow ol {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .platform-flow li {
        min-height: 38px;
    }

        .platform-flow li:after {
            display: none;
        }

    .demo-form {
        justify-self: start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .data-diagram {
        padding: 10px;
        grid-template-columns: 1fr;
        border: 1px solid #d2dfea;
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .saas-intro {
        
        max-width: initial;
        
    }

}

@media (max-width: 720px) {
    body {
        font-size: 16px;
    }

    .container, .faq {
        width: calc(100% - 36px);
    }

    .section {
        padding-block: 76px;
    }

    .section-intro h2 {
        font-size: 43px;
    }

    .section-intro p {
        font-size: 17px;
    }

    .site-header {
        height: 72px;
        padding-inline: 18px;
    }

        .site-header .brand-mark {
            width: 34px;
            height: 34px;
        }

            .site-header .brand-mark i {
                height: 32px;
                width: 5px;
            }

                .site-header .brand-mark i:first-child {
                    left: 9px;
                }

                .site-header .brand-mark i:last-child {
                    right: 9px;
                }

        .site-header .brand strong {
            font-size: 16px;
        }

        .brand-divider, .site-header .brand small, .login, .header-cta, .languages > span {
            display: none;
        }

    .languages {
        height: 40px;
        padding: 4px;
    }

        .languages button {
            width: 33px;
            height: 30px;
        }

    .hero {
        min-height: auto;
        padding: 112px 18px 54px;
    }

    .hero-grid {
        gap: 48px;
    }

    .hero-copy h1 {
        font-size: clamp(48px, 13.8vw, 63px);
    }

    .hero-text {
        font-size: 17px;
    }

    .button-row {
        flex-direction: column;
        display: flex;
        gap: 20px;
    }

        .button-row .button {
            width: 100%;
        }

    .hero-proof {
        align-items: flex-start;
    }

    .workflow-card {
        min-height: 590px;
        padding: 21px 17px;
    }

        .workflow-card > h2 {
            font-size: 32px;
        }

    .workflow-head {
        font-size: 10px;
    }

    .logo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

        .logo-grid span {
            min-height: 84px;
            padding: 14px;
        }

        .logo-grid img {
            height: 44px;
        }

    .trust-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .comparison-grid, .process-grid, .product-grid, .platform-grid {
        grid-template-columns: 1fr;
    }

    .comparison-card {
        padding: 26px;
    }

        .comparison-card li {
            font-size: 16px;
        }

    .statement {
        grid-template-columns: 1fr;
    }

    .section-action {
        align-items: flex-start;
        flex-direction: column;
    }

        .section-action .button {
            width: 100%;
        }

    .process-bar {
        grid-template-columns: 1fr;
    }

        .process-bar b {
            border-left: 0;
            border-top: 1px solid rgba(255,255,255,.18);
            padding: 13px 0 0;
        }

    .ai-tabs {
        grid-template-columns: 1fr;
    }

        .ai-tabs button {
            min-height: 68px;
        }

    .ai-panel {
        min-height: 540px;
        padding: 32px 23px;
    }

        .ai-panel h3 {
            margin-top: 55px;
            font-size: 38px;
        }

    .result-card {
        padding: 27px;
    }

    .result-metric {
        grid-template-columns: 1fr;
    }

    .data-diagram {
        padding: 10px;
        grid-template-columns: 1fr;
        border: 1px solid #d2dfea;
        border-radius: var(--radius);
        background: #eeeeee;
        display: grid;
        padding: 10px;
        align-items: center;
        justify-content: center;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

        .metric-grid article {
            border-right: 0;
            border-bottom: 1px solid #cbd8e4;
        }

    .product-card.featured {
        grid-column: auto;
    }

    .platform-shell {
        padding: 18px;
    }

        .platform-shell > header {
            grid-template-columns: 1fr;
        }

    .security-list article {
        grid-template-columns: 35px 1fr;
    }

        .security-list article > i {
            display: none;
        }

    .faq-list summary {
        font-size: 17px;
    }

    .demo-form {
        padding: 30px 20px;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 24px;
    }

        .footer-grid > div:first-child {
            grid-column: 1 / 3;
        }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
}

.logo-img {
    max-width: 250px;
}

/*.colored-costofliving {
    height: 60px;
    width: 50px;
    background-color: #87afd7;
    -webkit-mask: url('/content/others/col.png') center / contain no-repeat;
    mask: url('/content/others/col.png') center / contain no-repeat;
}*/

.portal-showcase {
    width: min(1580px, calc(100% - 40px));
    margin: 40px auto;
    padding: 26px 30px 34px;
    border: 1px solid #cadbec;
    border-radius: 12px;
    background: #fff;
    color: #073c7d;
}

.portal-title {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

    .portal-title h2 {
        margin: 0;
        color: #003474;
        font-family: Inter, Arial, sans-serif;
        font-size: 17px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

.portal-title-icon {
    width: 43px;
    height: 43px;
    border-radius: 11px;
    background: #eaf4ff;
    display: grid;
    place-items: center;
    color: #073c7d;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.portal-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(8, minmax(100px, 1fr));
    column-gap: 30px;
    row-gap: 58px;
    align-items: center;
}

.portal {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #173f66;
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(16px, 1.35vw, 22px);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .portal:hover {
        color: #073c7d;
        transform: translateY(-2px);
    }

/* Small typographic differences give the names a wordmark-like feel. */

.idealista,
.imovirtual,
.fotocasa,
.yaencontre,
.habitaclia,
.pisos,
.logic-immo,
.superimmo,
.custojusto,
.indomio {
    font-weight: 800;
    letter-spacing: -0.055em;
}

.rightmove,
.bien-ici {
    font-weight: 750;
    letter-spacing: -0.04em;
}

.green-acres,
.james-edition,
.le-figaro {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.olx {
    font-size: clamp(19px, 1.6vw, 26px);
    font-weight: 900;
    letter-spacing: -0.06em;
}

.le-figaro {
    font-size: clamp(14px, 1.15vw, 19px);
    white-space: normal;
}

/* Tablet */

@media (max-width: 1200px) {
    .portal-grid {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 44px;
    }
}

/* Mobile */

@media (max-width: 650px) {
    .portal-showcase {
        width: calc(100% - 28px);
        padding: 22px 18px 28px;
    }

    .portal-title {
        justify-content: flex-start;
    }

        .portal-title h2 {
            font-size: 14px;
            line-height: 1.35;
        }

    .portal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 18px;
    }

    .portal {
        min-width: 0;
        font-size: 16px;
        white-space: normal;
    }

    .olx {
        font-size: 20px;
    }

    .le-figaro {
        font-size: 14px;
    }
}

.portal.olx img{
    max-height:52px;
}

.portal.logic-immo img{
    max-height:46px;
}

.portal.immoscout24 img{
    max-height:60px;
}

canvas {
    display: block;
    vertical-align: bottom;
}
/* ---- particles.js container ---- */

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #031a37;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}


.language-dropdown {
    position: relative;
    z-index: 100;
}

.language-trigger {
    min-width: 96px;
    height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font: inherit;
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

    .language-trigger:hover,
    .language-trigger[aria-expanded="true"] {
        border-color: rgba(255, 255, 255, 0.48);
        background: rgba(255, 255, 255, 0.12);
    }

    .language-trigger img,
    .language-menu img {
        width: 24px;
        height: 16px;
        border-radius: 2px;
        object-fit: cover;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
    }

.language-arrow {
    margin-left: auto;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.language-trigger[aria-expanded="true"] .language-arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    margin: 0;
    padding: 8px;
    border: 1px solid #d7e1eb;
    border-radius: 12px;
    background: #fff;
    list-style: none;
    box-shadow: 0 20px 55px rgba(3, 26, 55, 0.2);
}

    .language-menu[hidden] {
        display: none;
    }

    .language-menu a {
        min-height: 48px;
        padding: 9px 10px;
        border-radius: 8px;
        color: #0b2139;
        display: grid;
        grid-template-columns: 24px 1fr auto;
        align-items: center;
        gap: 11px;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.2s ease, background 0.2s ease;
    }

        .language-menu a:hover,
        .language-menu a:focus-visible {
            color: #073c7d;
            background: #edf4fb;
        }

        .language-menu a[aria-current="page"] {
            color: #073c7d;
            background: #e3effc;
            font-weight: 750;
        }

    .language-menu small {
        color: #718397;
        font-size: 12px;
        font-weight: 800;
    }

@media (max-width: 720px) {
    .language-trigger {
        min-width: 76px;
        height: 42px;
        padding-inline: 10px;
    }

    .language-menu {
        position: fixed;
        top: 78px;
        right: 18px;
        left: 18px;
        width: auto;
    }
}

.language-trigger .language-arrow {
    padding-top: 1px;
}

.language-trigger[aria-expanded='false'] .language-arrow {
    padding-top: 7px;
}

.product-card small {
    color: #536b82;
    font-size: 12px;
}

.platform-grid article > span {
    color: #53677c;
    font-weight: 700;
}

.demo-form > small {
    color: #586b7d;
    font-size: 13px;
}

.saas-link {
    position: absolute;
    bottom: -60px;
    right: 5px;
    z-index: 1;
    color: #073c7d;
    font-weight: bold;
}

    .saas-link:hover {
        color: #042752
    }

.footer-policy {
    display: flex;
    gap: 30px;
}

.hidden{
    display:none;
    opacity:0;
    visibility:hidden;
    width:1px;
    height:1px;
}

#ai {
    scroll-margin-top: 110px;
}

#data {
    scroll-margin-top: 30px;
}

#plans {
    scroll-margin-top: 105px;
}

#platform {
    scroll-margin-top: 70px;
}

/* =========================================================
   Plans
   ========================================================= */

.plans-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 90% 5%, rgba(23, 107, 196, .11), transparent 34% ), #f4f8fc;
}

    .plans-section > .container {
        position: relative;
        z-index: 1;
    }

.plans-section__intro {
    max-width: 980px;
    margin-bottom: 48px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
}

.plan-card {
    min-width: 0;
    min-height: 400px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

    .plan-card:hover {
        transform: translateY(-5px);
        border-color: #96b8d9;
        box-shadow: 0 22px 48px rgba(7, 60, 125, .14);
    }

.plan-card--freemium {
    border-color: rgba(23, 107, 196, .42);
}

.plan-card--premium {
    color: var(--white);
    border-color: var(--blue);
    background: linear-gradient( 145deg, var(--blue) 0%, var(--navy) 100% );
    box-shadow: 0 22px 48px rgba(3, 26, 55, .2);
}

    .plan-card--premium:hover {
        border-color: #5ca8f5;
        box-shadow: 0 28px 58px rgba(3, 26, 55, .28);
    }

.plan-card__header {
    margin-bottom: 20px;
}

.plan-card__label {
    min-height: 28px;
    width: fit-content;
    margin-bottom: 20px;
    padding: 5px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    color: var(--blue);
    background: var(--pale);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.plan-card__label--free {
    color: #086744;
    background: #e3f8ef;
}

.plan-card--premium .plan-card__label {
    color: #d9edff;
    background: rgba(255, 255, 255, .12);
}

.plan-card__header h3 {
    margin: 0;
    font-size: clamp(31px, 2.4vw, 39px);
    font-weight: 560;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.plan-card__description {
    min-height: 82px;
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.plan-card--premium .plan-card__description {
    color: #c7d9eb;
}

.plan-card__features {
    margin: 0 0 32px;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.plan-card--premium .plan-card__features {
    border-color: rgba(255, 255, 255, .18);
}

.plan-card__features li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 27px;
    color: #40566d;
    font-size: 15px;
    line-height: 1.5;
}

    .plan-card__features li::before {
        content: "✓";
        position: absolute;
        top: 0;
        left: 0;
        color: var(--blue-2);
        font-weight: 800;
    }

.plan-card--premium .plan-card__features li {
    color: #d7e5f2;
}

    .plan-card--premium .plan-card__features li::before {
        color: #8fc8ff;
    }

.plan-card__cta {
    width: 100%;
    margin-top: auto;
}

.plan-card__cta--outline {
    color: var(--blue);
    border-color: #aac0d6;
    background: transparent;
}

    .plan-card__cta--outline:hover {
        color: var(--white);
        border-color: var(--blue);
        background: var(--blue);
    }

/* Tablet */
@media (max-width: 1100px) {
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))!important;
    }

    .plan-card {
        min-height: 470px;
    }
}

/* Mobile */
@media (max-width: 720px) {
    .plans-section__intro {
        margin-bottom: 34px;
    }

    .plans-grid {
        grid-template-columns: 1fr!important;
    }

    .plan-card {
        min-height: auto;
        padding: 26px 22px;
    }

    .plan-card__description {
        min-height: auto;
    }

    .plan-card__cta {
        margin-top: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .plan-card {
        transition: none;
    }

        .plan-card:hover {
            transform: none;
        }
}

a.button.plan-card__cta {
    padding: 0 19px;
    font-size: 14px;
}

.success.is-error {
    border-color: rgba(220, 75, 75, .45);
    background: rgba(220, 75, 75, .1);
}

    .success.is-error > b {
        color: #fff;
        background: #c94040;
    }


@media (max-width: 720px), (prefers-reduced-motion: reduce) {
    #particles-js canvas {
        display: none;
    }
    .hero-copy {
        background:none;
    }
}

.ai-panel[hidden] {
    display: none;
}

.ai-tabs button:focus-visible,
.ai-panel:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: -4px;
}

.templates-section {
    background: radial-gradient(circle at 92% 8%, rgba(23, 107, 196, .11), transparent 32%), #f7fafd;
}

.templates-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 48px;
}

    .templates-heading .section-intro {
        max-width: 980px;
    }

.templates-count {
    width: 190px;
    min-height: 170px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .templates-count strong {
        color: var(--blue);
        font-size: 72px;
        font-weight: 520;
        letter-spacing: -.07em;
        line-height: .9;
    }

    .templates-count span {
        margin-top: 14px;
        color: var(--muted);
        font-size: 14px;
        font-weight: 700;
        line-height: 1.35;
    }

.templates-gallery {
    margin-top: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(320px, .78fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.template-card {
    min-width: 0;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 20px 55px rgba(7, 60, 125, .1);
}

.template-card-featured {
    grid-row: 1 / 3;
}

.template-browser {
    height: 100%;
    min-height: 280px;
    border: 1px solid #cbd8e5;
    border-radius: 10px;
    overflow: hidden;
    background: #e7eef6;
    display: grid;
    grid-template-rows: 34px minmax(0, 1fr);
}

.template-card-featured .template-browser {
    min-height: 630px;
}

.template-browser-bar {
    padding-inline: 14px;
    border-bottom: 1px solid #d3deea;
    background: #f8fafc;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .template-browser-bar i {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #b4c3d2;
    }

.template-browser img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.template-card figcaption {
    padding: 13px 4px 2px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

    .template-card figcaption strong {
        color: var(--blue);
    }

.templates-config {
    margin-top: 22px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(360px, 1.2fr) auto;
    align-items: center;
    gap: 34px;
}

.templates-config-copy h3 {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 620;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.templates-config-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.templates-options {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .templates-options li {
        padding: 9px 12px;
        border: 1px solid var(--line);
        border-radius: 999px;
        color: var(--blue);
        background: var(--pale);
        font-size: 13px;
        font-weight: 700;
    }

.templates-config .button {
    justify-self: end;
}

@media (max-width: 1050px) {
    .templates-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .template-card-featured {
        grid-column: 1 / -1;
        grid-row: auto;
    }

        .template-card-featured .template-browser {
            min-height: 500px;
        }

    .templates-config {
        grid-template-columns: 1fr 1fr;
    }

        .templates-config .button {
            justify-self: start;
        }
}

@media (max-width: 700px) {
    .templates-heading,
    .templates-gallery,
    .templates-config {
        grid-template-columns: 1fr;
    }

    .templates-count {
        width: 100%;
        min-height: 130px;
    }

    .template-card-featured {
        grid-column: auto;
    }

        .template-browser,
        .template-card-featured .template-browser {
            min-height: 340px;
        }

    .templates-config {
        padding: 24px;
    }
}

.templates-gallery {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 18px;
}

.template-card,
.template-card-featured {
    grid-column: auto;
    grid-row: auto;
    display: flex;
    flex-direction: column;
}

    .template-browser,
    .template-card-featured .template-browser {
        width: 100%;
        height: auto;
        min-height: 0;
        display: grid;
        grid-template-rows: 34px auto;
    }

        .template-browser img {
            width: 100%;
            height: auto;
            aspect-ratio: 1000 / 562;
            display: block;
            object-fit: contain;
            object-position: center;
            background: #e7eef6;
        }

/* Tablet */
@media (max-width: 1050px) {
    .templates-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .template-card-featured {
        grid-column: auto;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .templates-gallery {
        grid-template-columns: 1fr;
    }

    .template-browser,
    .template-card-featured .template-browser {
        min-height: 0;
    }
}

.mobile-go-section {
    position: relative;
    overflow: hidden;
    padding-block: 60px;
    background: radial-gradient(circle at 82% 18%, rgba(23, 107, 196, .38), transparent 34%), linear-gradient(145deg, var(--navy) 0%, #051f40 100%);
}

    .mobile-go-section::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
        background-size: 54px 54px;
        mask-image: linear-gradient(to bottom, black, transparent 74%);
    }

    .mobile-go-section .container {
        position: relative;
        z-index: 1;
    }

.mobile-go-layout {
    margin-top: 0;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
    align-items: start;
    gap: 64px;
}

.mobile-app-copy h2 {
    max-width: 760px;
    margin: 12px 0 18px;
    color: var(--white);
    font-size: clamp(46px, 4.2vw, 64px);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: 1.02;
    text-wrap: balance;
}

.mobile-lead {
    max-width: 700px;
    margin: 0;
    color: #bfd0e2;
    font-size: 18px;
    line-height: 1.55;
}

.mobile-product-label {
    color: #8fc8ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.go-panel-heading h3 {
    margin: 8px 0 10px;
    color: var(--white);
    font-size: 30px;
    font-weight: 590;
    letter-spacing: -.04em;
    line-height: 1.15;
}

.go-panel-heading p {
    margin: 0;
    color: #bfd0e2;
    font-size: 16px;
    line-height: 1.6;
}

.mobile-download-inline {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto;
    align-items: end;
    gap: 20px;
}

    .mobile-download-inline h3 {
        margin: 5px 0 0;
        color: var(--white);
        font-size: 22px;
        font-weight: 590;
        letter-spacing: -.035em;
        line-height: 1.18;
    }

.store-links {
    width: min(430px, 100%);
    margin-top: 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.store-link {
    min-width: 0;
    min-height: 54px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 9px;
    color: var(--white);
    background: #020912;
    display: flex;
    align-content: center;
    align-items: center;
    gap:10px;
    transition: transform .2s, border-color .2s, background .2s;
}

.store-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .store-link:hover {
        border-color: #8fc8ff;
        background: #081422;
        transform: translateY(-2px);
    }

    .store-link small {
        color: #aab8c7;
        font-size: 10px;
        line-height: 1.1;
    }

    .store-link strong {
        margin-top: 2px;
        font-size: 18px;
        line-height: 1.15;
    }

.mobile-app-visual {
    position: relative;
    min-height: 325px;
    margin-top: 0;
}

.mobile-product-column {
    min-width: 0;
}

.mobile-go-section .mobile-app-visual .phone-shell {
    position: absolute;
    width: min(140px, 22%);
    max-width: 140px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .27);
    border-radius: 30px;
    background: #020912;
    box-shadow: 0 34px 70px rgba(0, 5, 17, .45);
}

.phone-shell-crm {
    z-index: 1;
    top: 0;
    left: 25%;
    transform: rotate(-4deg);
}

.phone-shell-go {
    z-index: 2;
    top: 28px;
    right: 24%;
    bottom: auto;
    transform: rotate(4deg);
}

.phone-speaker {
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 50%;
    width: 31%;
    height: 14px;
    border-radius: 999px;
    background: #020912;
    transform: translateX(-50%);
}

.phone-shell img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 2;
    max-height: 280px;
    border-radius: 23px;
    display: block;
    object-fit: cover;
    object-position: top center;
    background: #dfe9f3;
}

.mobile-visual-badge {
    position: absolute;
    z-index: 3;
    right: 27%;
    top: 41%;
    max-width: 210px;
    padding: 17px 19px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    color: var(--white);
    background: rgba(7, 60, 125, .9);
    box-shadow: 0 18px 40px rgba(0, 8, 22, .35);
    backdrop-filter: blur(12px);
}

    .mobile-visual-badge span {
        display: block;
        color: #9fd0ff;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .12em;
    }

    .mobile-visual-badge strong {
        display: block;
        margin-top: 5px;
        font-size: 15px;
        line-height: 1.35;
    }

.go-panel {
    margin-top: 18px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.go-panel-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
}

    .go-panel-heading > div {
        max-width: 820px;
    }

.go-more-link {
    padding-bottom: 7px;
    border-bottom: 1px solid #80bfff;
    color: #add5ff;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    font-size: 15px;
    font-weight: 700;
}

.go-features {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

    .go-features article {
        min-height: 0;
        padding: 17px 18px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 10px;
        background: rgba(255, 255, 255, .045);
    }

        .go-features article > span {
            color: #8fc8ff;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .12em;
        }

    .go-features h4 {
        margin: 11px 0 6px;
        color: var(--white);
        font-size: 17px;
        font-weight: 620;
        letter-spacing: -.025em;
        line-height: 1.2;
    }

    .go-features p {
        margin: 0;
        color: #afc1d4;
        font-size: 13px;
        line-height: 1.45;
    }

@media (max-width: 900px) {
    .mobile-go-layout {
        grid-template-columns: 1fr;
    }

    .mobile-product-column {
        width: min(680px, 100%);
        margin-inline: auto;
    }

    .mobile-app-visual {
        width: 100%;
        min-height: 325px;
    }

    .mobile-download-inline {
        max-width: none;
    }

    .go-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .mobile-app-copy h2 {
        font-size: 42px;
    }

    .mobile-app-visual {
        min-height: 280px;
        margin-top: 8px;
    }

    .mobile-go-section .mobile-app-visual .phone-shell {
        width: min(115px, 32%);
        max-width: 115px;
        border-radius: 26px;
    }

    .phone-shell-crm {
        left: 5%;
    }

    .phone-shell-go {
        top: 24px;
        right: 5%;
    }

    .phone-shell img {
        max-height: 230px;
        border-radius: 19px;
    }

    .mobile-visual-badge {
        right: 18%;
        top: 39%;
        max-width: 190px;
    }

    .mobile-download-inline {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 16px;
    }

        .mobile-download-inline .store-links {
            width: 100%;
        }

        .mobile-download-inline .store-link {
            min-height: 52px;
            padding-inline: 10px;
        }

            .mobile-download-inline .store-link strong {
                font-size: 16px;
            }

    .go-panel-heading,
    .go-features {
        grid-template-columns: 1fr;
    }

    .go-more-link {
        justify-self: start;
    }

    .store-link {
        flex: 1 1 160px;
    }
}

