:root {
    --green: #16a34a;
    --green-dark: #15803d;
    --green-light: #dcfce7;
    --bg: #f8faf9;
    --surface: #ffffff;
    --text: #14532d;
    --text-muted: #4b5563;
    --border: #e5e7eb;
    --shadow: 0 12px 40px rgba(20, 83, 45, 0.08);
    --radius: 16px;
    --wrap: 1120px;
    --header-h: 64px;
    --mobile-bar-h: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, sans-serif;
    color: var(--text);
    background-color: #eef6f1;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.42) 45%, rgba(255, 255, 255, 0.28) 100%),
        url('../site/bg-mobile.png') center top / cover no-repeat;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

@media (max-width: 767px) {
    body::before {
        top: var(--header-h);
        bottom: 0;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.38) 18%, rgba(255, 255, 255, 0.28) 100%),
            url('../site/bg-mobile.png') center top / cover no-repeat;
    }

    body::after {
        top: var(--header-h);
        bottom: 0;
    }
}

@media (min-width: 768px) {
    body::before {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.55) 42%, rgba(255, 255, 255, 0.22) 100%),
            url('../site/bg-desktop.png') center top / cover no-repeat;
    }
}

body.modal-open {
    overflow: hidden;
}

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

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.site-wrap {
    width: min(var(--wrap), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .site-header {
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(10px);
        box-shadow: none;
    }
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: var(--header-h);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.qozgal-logo--header {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.qozgal-logo--footer {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.qozgal-logo--modal {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
}

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

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

.site-logo__mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--green);
    color: #fff;
    display: none;
    place-items: center;
    font-weight: 800;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav {
    display: none;
    gap: 20px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.site-nav a:hover {
    color: var(--green);
}

.site-menu-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

.site-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

body.nav-open .site-menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .site-menu-btn span:nth-child(2) {
    opacity: 0;
}

body.nav-open .site-menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    background: var(--green);
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.site-btn:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.site-btn--ghost {
    background: transparent;
    color: var(--green);
    border: 1px solid rgba(22, 163, 74, 0.35);
}

.site-btn--ghost:hover {
    background: var(--green-light);
}

.site-btn--sm {
    padding: 10px 14px;
    font-size: 0.85rem;
}

.site-btn--block {
    width: 100%;
}

.hero {
    padding: 32px 0 56px;
    background: transparent;
}

.hero__grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

.hero__badge {
    display: inline-block;
    margin: 0 0 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 600;
}

.hero h1 {
    margin: 0 0 14px;
    font-size: clamp(1.85rem, 7vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.hero h1 em {
    color: var(--green);
    font-style: normal;
}

.hero__lead {
    margin: 0 0 20px;
    max-width: 560px;
    color: var(--text-muted);
    font-size: 1rem;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero__tags li {
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hero__phones {
    position: relative;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0 8px;
}

.hero__phone {
    width: min(210px, 46vw);
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 5px solid #111;
}

.hero__phone--back {
    position: absolute;
    left: 4%;
    transform: rotate(-8deg) scale(0.9);
    opacity: 0.92;
}

.hero__phone--front {
    position: relative;
    z-index: 1;
    transform: rotate(4deg);
}

.section-title {
    margin: 0 0 8px;
    font-size: clamp(1.55rem, 5vw, 2.2rem);
    text-align: center;
}

.section-sub {
    margin: 0 0 28px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.steps,
.features,
.app-showcase,
.soon-apps,
.pricing,
.faq,
.cta {
    padding: 56px 0;
}

.steps__grid,
.features__grid {
    display: grid;
    gap: 16px;
}

.step-card,
.feature-card,
.price-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.step-card__num {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-weight: 700;
}

.step-card h3,
.feature-card h3,
.price-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.step-card p,
.feature-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-card__icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.app-showcase {
    background: rgba(255, 255, 255, 0.35);
}

.app-demo {
    margin: 28px 0 32px;
}

.app-demo__content {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 4px);
    padding: 24px;
    box-shadow: var(--shadow);
}

.app-demo__text {
    margin: 0 0 20px;
    color: var(--text-muted);
    font-size: 0.98rem;
    max-width: 720px;
}

.app-demo__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 10px 18px 10px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #111;
    color: #fff;
    transition: transform 0.15s, box-shadow 0.15s;
}

.store-link--apple:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.store-link--soon {
    background: #f3f4f6;
    color: #6b7280;
    border-color: #d1d5db;
    position: relative;
    cursor: default;
}

.store-link__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.store-link--apple .store-link__icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16.365 1.43c0 1.14-.467 2.226-1.223 3.037-.836.906-2.204 1.604-3.31 1.508-.153-1.09.422-2.248 1.18-3.02.84-.858 2.282-1.496 3.353-1.525zM20.25 17.08c-.585 1.35-.86 1.944-1.608 3.135-1.043 1.68-2.513 3.78-4.334 3.795-1.62.013-2.037-1.05-4.234-1.044-2.197.006-2.62 1.06-4.24 1.047-1.826-.014-3.35-2.205-4.393-3.884-3.012-4.837-3.332-10.52-1.465-13.546 1.32-2.18 3.407-3.465 5.367-3.465 1.996 0 3.25 1.05 4.9 1.05 1.613 0 2.593-1.05 4.876-1.05 1.74 0 3.588.945 4.908 2.577-4.32 2.355-3.62 8.484.753 10.334z'/%3E%3C/svg%3E");
}

.store-link--google .store-link__icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M3.9 12c0-.66.11-1.29.31-1.88L1.05 7.19A10.96 10.96 0 0 0 1 12c0 1.77.42 3.45 1.17 4.93l3.16-2.93A5.9 5.9 0 0 1 3.9 12z'/%3E%3Cpath fill='%2334A853' d='M12.04 4.75c1.48 0 2.81.51 3.86 1.51l2.89-2.89C17.45 1.68 14.97 1 12.04 1 7.7 1 3.99 3.47 2.18 7.19l3.16 2.93C6.45 6.67 8.97 4.75 12.04 4.75z'/%3E%3Cpath fill='%23FBBC05' d='M12.04 22c2.83 0 5.21-.94 6.95-2.55l-3.16-2.93c-.88.59-2.01.94-3.79.94-3.07 0-5.59-1.92-6.5-4.61l-3.17 2.93C3.99 20.53 7.7 23 12.04 23z'/%3E%3Cpath fill='%23EA4335' d='M21.99 12c0-.82-.07-1.42-.22-2.05H12v3.93h5.62a4.7 4.7 0 0 1-2.04 3.08l3.16 2.93C20.94 18.5 21.99 15.57 21.99 12z'/%3E%3C/svg%3E");
}

.store-link__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.store-link__label {
    font-size: 0.72rem;
    opacity: 0.85;
}

.store-link__name {
    font-size: 1.05rem;
    font-weight: 700;
}

.store-link__badge {
    margin-left: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e5e7eb;
    color: #4b5563;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}

.app-showcase__screens-label {
    margin: 0 0 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.soon-apps {
    padding: 56px 0;
}

.soon-apps__grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .soon-apps__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.soon-app-card {
    position: relative;
    display: grid;
    gap: 20px;
    overflow: hidden;
    padding: 24px;
    border-radius: calc(var(--radius) + 6px);
    border: 1px dashed rgba(22, 163, 74, 0.35);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

@media (min-width: 768px) {
    .soon-app-card {
        grid-template-columns: 140px 1fr;
        align-items: center;
        padding: 28px;
    }
}

.soon-app-card--trainer {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(220, 252, 231, 0.85)),
        rgba(255, 255, 255, 0.94);
}

.soon-app-card--branch {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 253, 245, 0.7)),
        rgba(255, 255, 255, 0.94);
}

.soon-app-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #14532d, #16a34a);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.25);
}

.soon-app-card__visual {
    display: flex;
    justify-content: center;
}

.soon-app-card__phone {
    width: 118px;
    padding: 8px;
    border-radius: 22px;
    border: 4px solid #111;
    background: #111;
    box-shadow: 0 16px 36px rgba(20, 83, 45, 0.18);
    transform: rotate(-4deg);
}

.soon-app-card--branch .soon-app-card__phone {
    transform: rotate(4deg);
}

.soon-app-card__screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 168px;
    padding: 16px 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%);
}

.soon-app-card__screen--branch {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.soon-app-card__stat {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--green-dark);
}

.soon-app-card__stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.soon-app-card__chart {
    display: block;
    width: 100%;
    height: 48px;
    margin-top: 10px;
    border-radius: 10px;
    background:
        linear-gradient(to top, rgba(22, 163, 74, 0.18) 35%, transparent 35%),
        linear-gradient(to top, rgba(22, 163, 74, 0.35) 55%, transparent 55%),
        linear-gradient(to top, rgba(22, 163, 74, 0.55) 75%, transparent 75%),
        linear-gradient(to top, rgba(22, 163, 74, 0.28) 45%, transparent 45%);
    background-size: 22% 100%;
    background-repeat: no-repeat;
    background-position: 12% bottom, 36% bottom, 60% bottom, 84% bottom;
    opacity: 0.9;
}

.soon-app-card__qr {
    display: block;
    width: 72px;
    height: 72px;
    margin-bottom: 6px;
    border-radius: 12px;
    background:
        linear-gradient(90deg, #14532d 50%, transparent 50%) 0 0 / 12px 12px,
        linear-gradient(90deg, #14532d 50%, transparent 50%) 6px 6px / 12px 12px,
        linear-gradient(90deg, #16a34a 50%, transparent 50%) 12px 0 / 12px 12px,
        linear-gradient(90deg, #16a34a 50%, transparent 50%) 0 12px / 12px 12px,
        #ecfdf5;
    box-shadow: inset 0 0 0 2px rgba(20, 83, 45, 0.08);
}

.soon-app-card__body {
    min-width: 0;
}

.soon-app-card__role {
    margin: 0 0 6px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.soon-app-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    padding-right: 72px;
}

.soon-app-card__body > p {
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 0.94rem;
}

.soon-app-card__list {
    margin: 0;
    padding-left: 18px;
    color: var(--text);
    font-size: 0.88rem;
}

.soon-app-card__list li + li {
    margin-top: 6px;
}

.faq-item a {
    color: var(--green-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.screenshots {
    position: relative;
    padding: 0 44px;
}

.screenshots__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 4px 12px;
    scroll-padding-inline: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.screenshots__track::-webkit-scrollbar {
    display: none;
}

.screenshot-card {
    flex: 0 0 min(280px, calc(100vw - 120px));
    scroll-snap-align: center;
    margin: 0;
    text-align: center;
}

.screenshot-card__open {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
    text-align: center;
}

.screenshot-card img {
    width: 100%;
    border-radius: 22px;
    border: 4px solid #111;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.screenshot-card__open:active img {
    transform: scale(0.98);
}

.screenshot-card figcaption {
    margin-top: 12px;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
}

.screenshots__nav {
    display: grid;
    place-items: center;
    position: absolute;
    top: calc(50% - 18px);
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 2;
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
}

.screenshots__nav--prev {
    left: 0;
}

.screenshots__nav--next {
    right: 0;
}

.screenshots__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.screenshots__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(20, 83, 45, 0.2);
    cursor: pointer;
}

.screenshots__dot.is-active {
    background: var(--green);
    transform: scale(1.15);
}

.screenshots__hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 10px 0 0;
    line-height: 1.5;
}

.screenshot-lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, visibility 0.25s;
}

.screenshot-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.screenshot-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.82);
}

.screenshot-lightbox__panel {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screenshot-lightbox__close {
    position: absolute;
    top: -12px;
    right: -4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.screenshot-lightbox__panel img {
    width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    border-radius: 24px;
    border: 5px solid #111;
    box-shadow: var(--shadow);
}

.screenshot-lightbox__caption {
    margin: 14px 0 0;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.pricing__setup {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #14532d, #16a34a);
    color: #fff;
}

.pricing__setup-label {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 600;
}

.pricing__setup-note {
    margin: 0;
    opacity: 0.85;
    font-size: 0.92rem;
}

.pricing__setup-price {
    margin: 0;
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    font-weight: 800;
}

.pricing__included {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: var(--radius);
    border: 2px solid var(--green);
    background: linear-gradient(135deg, rgba(220, 252, 231, 0.95), rgba(255, 255, 255, 0.96));
    box-shadow: 0 12px 32px rgba(22, 163, 74, 0.12);
}

.pricing__included-title {
    margin: 0 0 14px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--green-dark);
    text-align: center;
}

.pricing__included-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

@media (min-width: 768px) {
    .pricing__included-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

.pricing__included-list li {
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(22, 163, 74, 0.18);
    text-align: center;
}

.pricing__included-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--green-dark);
    font-size: 0.98rem;
}

.pricing__included-list span {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

.pricing__grid {
    display: grid;
    gap: 16px;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card h3 {
    padding-right: 72px;
    min-height: 2.6rem;
}

.price-card--featured {
    border-color: var(--green);
    box-shadow: 0 16px 48px rgba(22, 163, 74, 0.15);
}

.price-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.72rem;
    font-weight: 700;
}

.price-card__amount {
    margin: 0 0 14px;
    min-height: 2.75rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green);
    display: flex;
    align-items: center;
}

.price-card__amount span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price-card__amount--text {
    font-size: 1.35rem;
}

.price-card ul {
    flex: 1 1 auto;
    margin: 0 0 18px;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.price-card li + li {
    margin-top: 6px;
}

.price-card__highlight {
    color: var(--green-dark);
    font-weight: 700;
    list-style: none;
    margin-left: -18px;
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--green-light);
}

.price-card__highlight + li {
    margin-top: 10px;
}

.price-card .site-btn {
    margin-top: auto;
    flex-shrink: 0;
}

.pricing__note {
    margin: 20px 0 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.faq__inner {
    max-width: 760px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    backdrop-filter: blur(8px);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
}

.faq-item p {
    margin: 10px 0 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.cta {
    background: rgba(236, 253, 245, 0.55);
    padding-bottom: calc(56px + var(--mobile-bar-h));
}

.cta__inner {
    display: grid;
    gap: 20px;
    text-align: center;
}

.cta__inner h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 5vw, 2rem);
}

.cta__inner p {
    margin: 0;
    color: var(--text-muted);
}

.cta__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.apply__form {
    display: grid;
    gap: 14px;
}

.apply__form-row {
    display: grid;
    gap: 14px;
}

.site-field span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.88rem;
    font-weight: 500;
}

.site-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font: inherit;
    background: #fff;
    -webkit-appearance: none;
    appearance: none;
}

.site-input:focus {
    outline: 2px solid rgba(22, 163, 74, 0.25);
    border-color: var(--green);
}

.apply__success {
    padding: 16px;
    border-radius: 12px;
    background: var(--green-light);
    color: var(--green-dark);
}

.apply__success--modal {
    text-align: center;
}

.apply__success-title {
    margin: 0 0 4px;
    font-weight: 700;
    font-size: 1.1rem;
}

.apply__success p:last-child {
    margin: 0 0 16px;
}

.apply__errors,
.errorlist {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #dc2626;
    font-size: 0.85rem;
}

.apply-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.apply-modal.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.apply-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.apply-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 92vh;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.28s ease;
}

.apply-modal.is-open .apply-modal__panel {
    transform: translateY(0);
}

.apply-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 0;
    flex-shrink: 0;
}

.apply-modal__eyebrow {
    margin: 0 0 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.apply-modal__header h2 {
    margin: 0;
    font-size: 1.25rem;
}

.apply-modal__close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.apply-modal__body {
    padding: 16px 18px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.apply-modal__lead {
    margin: 0 0 16px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.apply-modal__footer-note {
    margin: 14px 0 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.apply-modal__footer-note a {
    color: var(--green-dark);
    font-weight: 600;
}

.mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: flex;
    gap: 10px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(20, 83, 45, 0.08);
}

.mobile-cta-bar .site-btn {
    flex: 1;
}

.site-footer {
    padding: 36px 0 24px;
    background: #14532d;
    color: #ecfdf5;
    padding-bottom: calc(24px + var(--mobile-bar-h));
}

.site-footer__inner {
    display: grid;
    gap: 20px;
}

.site-footer p {
    margin: 8px 0 0;
    opacity: 0.8;
    font-size: 0.92rem;
}

.site-footer__links,
.site-footer__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 0.92rem;
}

.site-footer__link-btn {
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

.site-footer__links a:hover,
.site-footer__contacts a:hover,
.site-footer__link-btn:hover {
    opacity: 0.85;
}

.site-footer__copy {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
}

.site-footer__copy-text {
    opacity: 0.7;
    font-size: 0.85rem;
}

.site-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ecfdf5;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-instagram-link:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

.site-instagram-link__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        #f58529 0%,
        #dd2a7b 45%,
        #8134af 75%,
        #515bd4 100%
    );
    box-shadow: 0 4px 14px rgba(221, 42, 123, 0.35);
    flex-shrink: 0;
}

.site-instagram-link__icon svg {
    display: block;
}

.site-instagram-link__text {
    opacity: 0.95;
}

@media (min-width: 560px) {
    .hero__actions,
    .cta__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero__actions .site-btn,
    .cta__actions .site-btn {
        width: auto;
    }

    .apply__form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 720px) {
    .site-nav {
        display: flex;
    }

    .site-menu-btn {
        display: none;
    }

    .hero {
        padding: 48px 0 72px;
    }

    .hero__grid {
        grid-template-columns: 1.05fr 0.95fr;
    }

    .hero__actions {
        flex-direction: row;
    }

    .hero__phones {
        min-height: 420px;
    }

    .hero__phone {
        width: min(240px, 42vw);
        border-radius: 28px;
        border-width: 6px;
    }

    .steps,
    .features,
    .app-showcase,
    .soon-apps,
    .pricing,
    .faq,
    .cta {
        padding: 72px 0;
    }

    .steps__grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .pricing__setup {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .pricing__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta {
        padding-bottom: 72px;
    }

    .cta__inner {
        grid-template-columns: 1fr auto;
        align-items: center;
        text-align: left;
    }

    .cta__actions {
        justify-content: flex-end;
    }

    .mobile-cta-bar {
        display: none;
    }

    .site-footer {
        padding-bottom: 24px;
    }

    .site-footer__inner {
        grid-template-columns: 1.2fr 1fr 1fr;
        align-items: start;
    }

    .apply-modal {
        align-items: center;
        padding: 24px;
    }

    .apply-modal__panel {
        width: min(560px, 100%);
        max-height: min(90vh, 820px);
        border-radius: 20px;
        transform: translateY(24px) scale(0.96);
    }

    .apply-modal.is-open .apply-modal__panel {
        transform: translateY(0) scale(1);
    }

    .apply-modal__header {
        padding: 24px 24px 0;
    }

    .apply-modal__body {
        padding: 16px 24px 24px;
    }
}

@media (min-width: 960px) {
    .features__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .screenshots {
        padding: 0 48px;
    }

    .screenshots__nav {
        width: 40px;
        height: 40px;
    }

    .screenshots__nav--prev {
        left: -8px;
    }

    .screenshots__nav--next {
        right: -8px;
    }
}

@media (max-width: 719px) {
    body.nav-open .site-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        padding: 16px;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        z-index: 99;
    }

    body.nav-open {
        overflow: hidden;
    }

    .site-header__actions .site-btn--sm {
        display: none;
    }
}
