:root {
    --primary: #0f9d7a;
    --primary-dark: #08745b;
    --primary-deep: #075d4b;
    --primary-soft: #e9f8f3;
    --primary-softer: #f2fbf8;

    --teal: #14b8a6;
    --amber: #f59e0b;

    --background: #f7faf9;
    --surface: #ffffff;

    --text: #17211f;
    --text-soft: #64706d;
    --text-muted: #87918f;

    --border: #e4ece9;
    --border-dark: #d6e2de;

    --shadow:
        0 12px 40px rgba(24, 72, 61, .07);

    --shadow-hover:
        0 22px 60px rgba(24, 72, 61, .12);

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(
        var(--container),
        calc(100% - 40px)
    );
    margin: 0 auto;
}


/* ================================================
   DISCLAIMER
================================================ */

.independent-banner {
    background: #fffaf0;
    border-bottom: 1px solid #f4e6c4;
    color: #6d5b30;
    font-size: 13px;
}

.banner-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.banner-message {
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-icon {
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #fff1c9;
    font-weight: 800;
}

.banner-separator {
    margin: 0 5px;
    opacity: .55;
}

.banner-link {
    font-weight: 700;
    white-space: nowrap;
}


/* ================================================
   HEADER
================================================ */

.site-header {
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(228, 236, 233, .8);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--teal)
        );
    color: white;
    font-weight: 850;
    letter-spacing: -1px;
    box-shadow:
        0 10px 26px rgba(15, 157, 122, .20);
}

.brand-mark.small {
    width: 42px;
    height: 42px;
    border-radius: 13px;
}

.brand-name {
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -.7px;
}

.brand-name span {
    color: var(--primary);
}

.brand-caption {
    color: var(--text-soft);
    font-size: 11px;
    margin-top: 1px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav > a {
    font-size: 14px;
    font-weight: 650;
    color: #485653;
    transition: .2s ease;
}

.desktop-nav > a:hover {
    color: var(--primary);
}

.language-button,
.install-button {
    height: 42px;
    border-radius: 12px;
    padding: 0 14px;
    border: 1px solid var(--border);
    background: white;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 8px;
}

.install-button {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.chevron {
    color: var(--text-muted);
}

.hidden {
    display: none !important;
}


/* ================================================
   HERO
================================================ */

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fbfa 100%
        );
    border-bottom: 1px solid var(--border);
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 92px 0 74px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.orb-one {
    width: 430px;
    height: 430px;
    top: -230px;
    left: -170px;
    background:
        radial-gradient(
            circle,
            rgba(20, 184, 166, .13),
            rgba(20, 184, 166, 0) 70%
        );
}

.orb-two {
    width: 520px;
    height: 520px;
    right: -260px;
    top: -100px;
    background:
        radial-gradient(
            circle,
            rgba(15, 157, 122, .10),
            rgba(15, 157, 122, 0) 70%
        );
}

.hero-badge {
    width: max-content;
    max-width: 100%;
    margin: 0 auto 20px;
    border: 1px solid #cfece3;
    background: var(--primary-soft);
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 750;
}

.spark {
    margin-right: 6px;
}

.hero h1 {
    margin: 0 auto;
    max-width: 850px;
    font-size: clamp(46px, 6vw, 74px);
    line-height: 1.02;
    letter-spacing: -3.7px;
    font-weight: 850;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {
    max-width: 720px;
    margin: 24px auto 36px;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.75;
}


/* ASK CARD */

.ask-card {
    max-width: 880px;
    margin: 0 auto;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.96);
    box-shadow:
        0 24px 70px rgba(35, 75, 66, .10);
    text-align: left;
}

.ask-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
    padding: 0 3px;
}

.ask-heading strong {
    font-size: 15px;
}

.ask-spark {
    color: var(--primary);
    margin-right: 6px;
}

.ai-badge {
    background: var(--primary-soft);
    color: var(--primary-dark);
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.search-box {
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 17px;
    gap: 10px;
    border: 1.5px solid var(--border-dark);
    border-radius: 17px;
    background: #fbfdfc;
    transition: .2s ease;
}

.search-box:focus-within {
    border-color: var(--primary);
    background: white;
    box-shadow:
        0 0 0 4px rgba(15, 157, 122, .08);
}

.search-icon {
    color: var(--primary);
    font-size: 27px;
    transform: rotate(-15deg);
}

.search-box input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 16px;
}

.search-box input::placeholder {
    color: #98a3a0;
}

.ask-button {
    height: 52px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    color: white;
    font-weight: 800;
    box-shadow:
        0 9px 20px rgba(15, 157, 122, .18);
    transition: .2s ease;
}

.ask-button:hover {
    transform: translateY(-1px);
    box-shadow:
        0 12px 25px rgba(15, 157, 122, .24);
}

.example-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 4px 0;
    color: var(--text-muted);
    font-size: 12px;
}

.example {
    border: 1px solid var(--border);
    background: #fafcfb;
    border-radius: 999px;
    padding: 7px 10px;
    color: #596562;
    font-size: 11px;
}

.example:hover {
    border-color: #b9ddd2;
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.hero-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 25px;
    color: #66726f;
    font-size: 12px;
}

.hero-trust > div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-check {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 900;
}


/* ================================================
   SECTIONS
================================================ */

.section {
    padding: 88px 0;
}

.services-section {
    background: var(--background);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 850;
}

.eyebrow.light {
    color: #9de7d4;
}

.section-heading h2,
.center-heading h2,
.trust-copy h2 {
    margin: 0;
    letter-spacing: -1.4px;
    font-size: clamp(29px, 4vw, 42px);
}

.section-heading p,
.center-heading p {
    color: var(--text-soft);
    line-height: 1.65;
    margin: 10px 0 0;
}

.text-button {
    border: 0;
    background: transparent;
    color: var(--primary-dark);
    font-weight: 800;
}


/* ================================================
   SERVICE CARDS
================================================ */

.service-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 255px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow:
        0 4px 18px rgba(35, 72, 64, .035);
    cursor: pointer;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #cce1db;
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 24px;
    margin-bottom: 20px;
}

.violet {
    background: #f2edff;
}

.sky {
    background: #eaf6ff;
}

.amber {
    background: #fff5da;
}

.emerald {
    background: #e9f8f3;
    color: #08745b;
    font-weight: 900;
    font-size: 27px;
}

.cyan {
    background: #e7fafa;
}

.coral {
    background: #fff0eb;
}

.purple {
    background: #f5edff;
}

.green {
    background: #edf8e9;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.service-content p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.65;
}

.service-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eef2f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-footer > span {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
}

.service-footer button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 10px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 900;
}


/* ================================================
   GOVERNMENT LEVEL
================================================ */

.government-section {
    background: white;
}

.center-heading {
    max-width: 700px;
    margin: 0 auto 38px;
    text-align: center;
}

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

.level-card {
    position: relative;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fbfdfc;
}

.level-card.featured {
    background:
        linear-gradient(
            145deg,
            #f1fbf8,
            #fbfefd
        );
    border-color: #bfe5da;
}

.level-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    border-radius: 999px;
    padding: 6px 9px;
    background: #daf3eb;
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 800;
}

.level-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
    font-size: 25px;
    margin-bottom: 22px;
}

.level-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.level-card p {
    min-height: 68px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.7;
}

.level-card button {
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 13px;
}


/* ================================================
   HOW IT WORKS
================================================ */

.how-section {
    background: #f6faf8;
}

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

.step-card {
    position: relative;
    min-height: 230px;
    padding: 28px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.step-number {
    position: absolute;
    right: 24px;
    top: 22px;
    color: #dce7e3;
    font-size: 30px;
    font-weight: 900;
}

.step-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
}

.step-card h3 {
    margin: 0 0 10px;
}

.step-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 13px;
}


/* ================================================
   TRUST
================================================ */

.trust-section {
    background: white;
}

.trust-panel {
    display: grid;
    grid-template-columns:
        1.25fr .75fr;
    gap: 50px;
    align-items: center;
    padding: 54px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            135deg,
            #0b6652,
            #08745b 50%,
            #0d8d70
        );
    color: white;
    overflow: hidden;
}

.trust-copy p {
    color: rgba(255,255,255,.77);
    line-height: 1.75;
    max-width: 650px;
}

.trust-points {
    margin-top: 25px;
    display: grid;
    gap: 13px;
    color: rgba(255,255,255,.9);
    font-size: 13px;
}

.trust-points div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.trust-points span {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.13);
    border-radius: 50%;
    font-weight: 900;
}

.verification-card {
    padding: 24px;
    border-radius: 22px;
    background: white;
    color: var(--text);
    box-shadow:
        0 25px 60px rgba(0,0,0,.12);
}

.verification-top {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.verification-top strong,
.verification-top span {
    display: block;
}

.verification-top span {
    color: var(--text-muted);
    font-size: 11px;
    margin-top: 3px;
}

.verification-shield {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 19px;
    font-weight: 900;
}

.verification-details {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.verification-details > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
}

.verification-details span {
    color: var(--text-muted);
}

.verification-details strong {
    text-align: right;
}

.verification-details .active {
    color: var(--primary);
}


/* ================================================
   FOOTER
================================================ */

.site-footer {
    padding: 50px 0 100px;
    background: #f7faf9;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand span {
    color: var(--text-soft);
    font-size: 11px;
    margin-top: 2px;
}

.powered {
    color: var(--text-soft);
    font-size: 12px;
}

.footer-disclaimer {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #eadfbe;
    background: #fffaf0;
    border-radius: 16px;
    color: #655b42;
}

.footer-disclaimer strong {
    font-size: 12px;
}

.footer-disclaimer p {
    margin: 7px 0 0;
    font-size: 11px;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 11px;
}


/* ================================================
   MOBILE NAV
================================================ */

.mobile-nav {
    display: none;
}


/* ================================================
   TOAST
================================================ */

.toast {
    position: fixed;
    left: 50%;
    bottom: 30px;
    z-index: 200;
    transform:
        translate(-50%, 20px);
    max-width: calc(100% - 32px);
    padding: 12px 17px;
    border-radius: 12px;
    background: #17211f;
    color: white;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    box-shadow:
        0 15px 40px rgba(0,0,0,.18);
}

.toast.show {
    transform:
        translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}


/* ================================================
   RESPONSIVE
================================================ */

@media (max-width: 980px) {

    .desktop-nav > a {
        display: none;
    }

    .service-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .trust-panel {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 720px) {

    .container {
        width: min(
            100% - 28px,
            var(--container)
        );
    }

    .independent-banner {
        font-size: 10px;
    }

    .banner-inner {
        min-height: 42px;
    }

    .banner-separator,
    .banner-link {
        display: none;
    }

    .header-inner {
        min-height: 67px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .brand-name {
        font-size: 19px;
    }

    .brand-caption {
        display: none;
    }

    .language-button {
        height: 38px;
    }

    .desktop-nav {
        gap: 8px;
    }

    .install-button {
        display: none !important;
    }

    .hero-inner {
        padding: 62px 0 52px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);
        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.7;
        margin: 20px auto 28px;
    }

    .ask-card {
        padding: 14px;
        border-radius: 20px;
    }

    .search-box {
        min-height: auto;
        display: grid;
        grid-template-columns: auto 1fr;
        padding: 10px;
    }

    .search-box input {
        height: 46px;
        font-size: 14px;
    }

    .ask-button {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
    }

    .example-row {
        display: none;
    }

    .hero-trust {
        gap: 10px 16px;
        font-size: 10px;
    }

    .section {
        padding: 62px 0;
    }

    .section-heading {
        align-items: start;
        margin-bottom: 24px;
    }

    .section-heading p {
        font-size: 13px;
    }

    .text-button {
        display: none;
    }

    .service-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .service-card {
        min-height: 220px;
        padding: 16px;
        border-radius: 19px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        border-radius: 14px;
        margin-bottom: 15px;
        font-size: 20px;
    }

    .service-content h3 {
        font-size: 15px;
    }

    .service-content p {
        font-size: 11px;
        line-height: 1.55;
    }

    .service-footer {
        margin-top: 14px;
        padding-top: 12px;
    }

    .service-footer > span {
        font-size: 9px;
    }

    .level-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .level-card p {
        min-height: 0;
    }

    .trust-panel {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .trust-copy h2 {
        font-size: 31px;
    }

    .verification-card {
        padding: 18px;
    }

    .footer-top,
    .footer-bottom {
        align-items: start;
        flex-direction: column;
    }

    .site-footer {
        padding-bottom:
            calc(105px + env(safe-area-inset-bottom));
    }

    .mobile-nav {
        position: fixed;
        z-index: 100;
        display: grid;
        grid-template-columns:
            1fr 1fr 1.25fr 1fr;
        left: 12px;
        right: 12px;
        bottom:
            calc(10px + env(safe-area-inset-bottom));
        min-height: 67px;
        padding: 7px;
        border: 1px solid rgba(214,226,222,.95);
        border-radius: 20px;
        background: rgba(255,255,255,.94);
        backdrop-filter: blur(20px);
        box-shadow:
            0 14px 45px rgba(22, 62, 53, .14);
    }

    .mobile-nav a,
    .mobile-nav button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        border: 0;
        background: transparent;
        color: #7b8784;
        font-size: 9px;
        font-weight: 750;
    }

    .mobile-nav a > span,
    .mobile-nav button > span {
        font-size: 18px;
    }

    .mobile-nav .mobile-active {
        color: var(--primary-dark);
    }

    .mobile-nav .mobile-ask {
        margin: -17px 3px 0;
        border-radius: 16px;
        background:
            linear-gradient(
                135deg,
                var(--primary),
                var(--primary-dark)
            );
        color: white;
        box-shadow:
            0 9px 22px rgba(15,157,122,.24);
    }

    .toast {
        bottom:
            calc(95px + env(safe-area-inset-bottom));
    }

}


@media (max-width: 390px) {

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 205px;
    }

}


/* ================================================
   ASK 360 LIVE RESULTS
================================================ */

.search-results {
    max-width: 880px;
    margin: 14px auto 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
    box-shadow:
        0 22px 65px rgba(31,76,65,.10);
    text-align: left;
}

.results-header {
    padding: 7px 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.results-header strong,
.results-header span {
    display: block;
}

.results-header strong {
    font-size: 13px;
}

.results-header span {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 10px;
}

.results-header button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 10px;
    background: #f4f7f6;
    color: #64706d;
    font-size: 20px;
}

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

.result-item {
    display: grid;
    grid-template-columns:
        42px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 13px;
    border: 1px solid #edf2f0;
    border-radius: 15px;
    background: #fcfdfd;
    transition: .15s ease;
}

.result-item:hover {
    border-color: #cce3dc;
    background: #f6fbf9;
}

.result-symbol {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 900;
}

.result-copy strong,
.result-copy span {
    display: block;
}

.result-copy strong {
    font-size: 13px;
}

.result-copy span {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 10px;
    line-height: 1.5;
}

.result-arrow {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 900;
}

.empty-result {
    padding: 28px 18px;
    text-align: center;
    color: var(--text-soft);
    font-size: 12px;
}

@media(max-width: 600px) {

    .result-item {
        grid-template-columns:
            38px 1fr auto;
        padding: 11px;
    }

    .result-symbol {
        width: 38px;
        height: 38px;
    }

}
