﻿
:root {
    --orange: #f47c12;
    --green: #3f8c2f;
    --green-dark: #2f7d24;
    --text: #171717;
    --muted: #5c6168;
    --soft: #f1f5eb;
    --line: #e8e8e8;
    --footer: #17191b;
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: #fff;
    color: var(--text);
    font-family: Arial,Helvetica,sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    height: 98px;
    padding: 0 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.logo {
    font-size: 33px;
    font-weight: 700;
    letter-spacing: -1.1px;
    white-space: nowrap;
}

    .logo .orange {
        color: var(--orange)
    }

    .logo .green {
        color: var(--green)
    }

.btn-enter {
    min-width: 125px;
    height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}

.hero {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 64px 64px 34px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 54px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--green-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 38px;
}

    .badge svg {
        width: 22px;
        height: 22px;
        flex: 0 0 auto;
    }

h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(54px,5.2vw,82px);
    line-height: 1.02;
    letter-spacing: -3.5px;
    font-weight: 700;
}

    h1 .orange {
        color: var(--orange);
    }

.subtitle {
    max-width: 680px;
    margin: 32px 0 0;
    color: var(--muted);
    font-size: 25px;
    line-height: 1.45;
}

.actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.btn {
    height: 70px;
    padding: 0 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    text-decoration: none;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    transition: transform .15s ease,opacity .15s ease;
}

    .btn:hover {
        transform: translateY(-1px);
        opacity: .95;
    }

    .btn svg {
        width: 26px;
        height: 26px;
    }

.btn-app {
    background: var(--orange);
    min-width: 270px;
}


.google-play-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    line-height: 0;
    transition: transform .15s ease, opacity .15s ease;
}

    .google-play-link:hover {
        transform: translateY(-1px);
        opacity: .96;
    }

.google-play-badge {
    display: block;
    width: 270px;
    max-width: 100%;
    height: auto;
}

@media (max-width:680px) {
    .google-play-link {
        width: 100%;
    }

    .google-play-badge {
        width: 260px;
        max-width: 100%;
    }
}

.btn-site {
    background: #202020;
    min-width: 300px;
}

.play-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 27px;
    color: #4f555b;
    font-size: 18px;
}

.play-triangle {
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 24px solid #31a853;
    position: relative;
    filter: saturate(1.05);
}

.phone-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.phone-img {
    width: 100%;
    max-width: 690px;
    display: block;
}

.features {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 6px 64px 34px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}

.feature {
    min-height: 104px;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 17px;
    align-items: start;
    padding: 0 30px;
    border-right: 1px solid var(--line);
}

    .feature:first-child {
        padding-left: 0
    }

    .feature:last-child {
        border-right: 0;
        padding-right: 0;
    }

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
}

    .feature-icon svg {
        width: 30px;
        height: 30px;
    }

.feature h3 {
    margin: 2px 0 8px;
    font-size: 17px;
    line-height: 1.2;
}

.feature p {
    margin: 0;
    color: #565b62;
    font-size: 15px;
    line-height: 1.5;
}

.footer {
    margin-top: auto;
    background: var(--footer);
    color: #d8d8d8;
    text-align: center;
    padding: 19px 20px;
    font-size: 15px;
}

@media (max-width:1100px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 48px;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h1, .subtitle {
        max-width: 850px
    }

    .actions, .play-note {
        justify-content: center
    }

    .phone-img {
        max-width: 620px
    }

    .features {
        grid-template-columns: repeat(2,1fr);
        gap: 28px 0;
    }

    .feature:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width:680px) {
    .header {
        height: 78px;
        padding: 0 16px;
    }

    .logo {
        font-size: 21px;
        letter-spacing: -.5px;
    }

    .btn-enter {
        min-width: 92px;
        height: 44px;
        padding: 0 18px;
        font-size: 16px;
    }

    .hero {
        padding: 36px 18px 24px;
        gap: 26px;
    }

    .badge {
        font-size: 14px;
        padding: 10px 14px;
        margin-bottom: 26px;
    }

    h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .subtitle {
        font-size: 19px;
        margin-top: 22px;
    }

    .actions {
        width: 100%;
        margin-top: 28px;
        gap: 12px;
    }

    .btn {
        width: 100%;
        min-width: 0;
        height: 58px;
        font-size: 18px;
    }

    .play-note {
        font-size: 14px;
        line-height: 1.35;
        align-items: flex-start;
        text-align: left;
    }

    .phone-img {
        max-width: 480px;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 12px 20px 26px;
        gap: 20px;
    }

    .feature,
    .feature:first-child,
    .feature:last-child {
        padding: 0;
        border-right: 0;
    }
}


