* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #07110c;
    --bg-2: #0b1711;
    --card: rgba(255, 255, 255, 0.07);
    --card-2: rgba(255, 255, 255, 0.05);
    --line: rgba(255, 255, 255, 0.12);
    --text: #f4fff7;
    --muted: #b9cbbf;
    --accent: #84ff9a;
    --accent-2: #27d27a;
    --dark: #08140e;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    --radius: 28px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 10%, rgba(39, 210, 122, 0.22), transparent 25%),
        radial-gradient(circle at 85% 15%, rgba(132, 255, 154, 0.14), transparent 24%),
        linear-gradient(160deg, #04100a 0%, #0a1812 45%, #04100a 100%);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.blur-orb {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .35;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    background: #1fff8b;
    top: 40px;
    left: -110px;
}

.orb-2 {
    background: #6dffbf;
    top: 520px;
    right: -120px;
}

.btn-app {
    text-align: center;
    width: 210px;
}

.btn {
    padding: 10px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #071e10;
    font-weight: bold;
    box-shadow: 0 12px 30px rgba(132, 255, 154, .2);
    transition: .35s;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 36px rgba(132, 255, 154, .3);
}

/* page */

.work-page {
    position: relative;
    z-index: 1;
    padding: 30px 0 100px;
}

.work-tag {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(132, 255, 154, .2);
    background: rgba(132, 255, 154, .08);
    color: #dbffe2;
    margin-bottom: 24px;
    font-size: 14px;
}

.work-content h1 {
    font-size: 48px;
    line-height: .98;
    margin-bottom: 26px;
}

.work-content h2 {
    font-size: 28px;
    margin: 52px 0 18px;
}

.work-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.work-content b {
    color: var(--text);
}

.lead {
    font-size: 16px !important;
}

.accent-text {
    margin: 34px 0 44px;
    padding-left: 24px;
    border-left: 3px solid var(--accent);
    color: var(--text);
    font-size: 18px;
    line-height: 1.6;
}

.accent-text b {
    color: var(--accent);
}

.text-steps {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.text-steps p {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    margin-bottom: 0;
}

.text-steps span {
    color: var(--accent);
    font-size: 18px;
    font-weight: bold;
}


.green-note {
    margin: 36px 0 44px;
    padding: 26px 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 20%, rgba(132, 255, 154, .18), transparent 35%),
        rgba(255, 255, 255, .05);
    border: 1px solid rgba(132, 255, 154, .18);
    color: var(--text);
    font-size: 18px;
    line-height: 1.6;
}

.green-note b {
    color: var(--accent);
}

@media (max-width: 640px) {
    .work-page {
        padding: 30px 0 65px;
    }

    .work-content h1 {
        font-size: 32px;
    }

    .work-content h2 {
        font-size: 28px;
        margin-top: 38px;
    }

    .work-content p,
    .lead {
        font-size: 16px !important;
    }

    .accent-text,
    .green-note {
        font-size: 18px;
        padding: 20px;
    }

    .text-steps p {
        grid-template-columns: 1fr;
        gap: 6px;
    }

}

/* footer */

footer {
    border-top: 1px solid var(--line);
    padding: 26px 0 34px;
    position: relative;
    z-index: 1;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--muted);
}

.contacts {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contacts img {
    width: 30px;
    height: 30px;
}

/* adaptive */

@media (max-width: 980px) {
    .work-top,
    .work-details,
    .work-bottom {
        grid-template-columns: 1fr;
    }

    .work-top {
        align-items: start;
    }

    .work-top h1 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

    .work {
        padding: 35px 0 55px;
    }

    .work-shell {
        padding: 22px;
        border-radius: 28px;
    }

    .work-top {
        gap: 18px;
        margin-bottom: 28px;
    }

    .work-top h1 {
        font-size: 24px;
    }

    .work-top p {
        font-size: 16px;
    }

    .work-step {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px;
        border-radius: 22px;
    }

    .work-step:hover {
        transform: none;
    }

    .work-step span {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }

    .work-step h3 {
        font-size: 22px;
    }

    .detail-list,
    .work-info-grid {
        grid-template-columns: 1fr;
    }

    .detail-card,
    .detail-item,
    .info-box,
    .trial-text,
    .problem-text {
        padding: 22px;
        border-radius: 22px;
    }

    .detail-card h2,
    .trial-text h2 {
        font-size: 28px;
    }

}