/* ===========================
   Moving Checklist – Nomad Move
   =========================== */

.nm-checklist-page {
    background: #ffffff;
}

/* HERO */

.nm-checklist-page .checklist-hero {
    padding: 110px 0 60px;
    background:
        radial-gradient(circle at top left, rgba(98,208,201,0.12), transparent 55%),
        radial-gradient(circle at bottom right, rgba(232,220,196,0.25), transparent 55%);
    position: relative;
}

/* адаптивная полоска под херо */

.nm-checklist-page .checklist-hero::after {
    content: "";
    display: block;
    width: min(860px, 70vw);
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    margin: 32px auto 0;
    opacity: 0.9;
}

.nm-checklist-page .checklist-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.nm-checklist-page .checklist-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(98,208,201,0.15);
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.nm-checklist-page .checklist-hero h1 {
    margin: 0 0 8px;
    font-size: 36px;
    line-height: 1.15;
    color: var(--dark);
}

.nm-checklist-page .checklist-hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 12px;
    color: var(--dark);
}

.nm-checklist-page .checklist-hero-text {
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    max-width: 640px;
    opacity: 0.9;
}

/* SECTIONS WRAPPER (аккордеон как у FAQ) */

.nm-checklist-page .checklist-sections {
    padding: 40px 0 80px;
}

.nm-checklist-page .faq-section {
    margin-bottom: 40px;
}

.nm-checklist-page .faq-section-title {
    margin: 0 0 18px;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

/* FAQ LIST */

.nm-checklist-page .faq-list {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    padding: 8px 0;
}

.nm-checklist-page .faq-item + .faq-item {
    border-top: 1px solid rgba(13,42,69,0.08);
}

/* HEADER */

.nm-checklist-page .faq-item-header {
    width: 100%;
    padding: 16px 22px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-size: 20px; /* больше заголовок */
    font-weight: 600;
    color: var(--dark);
    transition: background 0.15s ease, color 0.15s ease;
}

.nm-checklist-page .faq-item-header:hover {
    background: rgba(98,208,201,0.06);
    color: var(--primary);
}

/* открытая вкладка подсвечена как hover */

.nm-checklist-page .faq-item.is-open .faq-item-header {
    background: rgba(98,208,201,0.06);
    color: var(--primary);
}

.nm-checklist-page .faq-question {
    flex: 1;
}

/* Chevron */

.nm-checklist-page .faq-toggle-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nm-checklist-page .faq-toggle-icon::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg); /* вниз */
    transition: transform 0.18s ease;
}

.nm-checklist-page .faq-item.is-open .faq-toggle-icon::before {
    transform: rotate(-135deg); /* вверх */
}

/* BODY */

.nm-checklist-page .faq-item-body {
    padding: 0 22px 18px;
    font-size: 15px;           /* больше текст */
    line-height: 1.7;
    color: var(--dark);
    background: #fff;
}

.nm-checklist-page .faq-item-body h3 {
    margin: 12px 0 6px;
    font-size: 17px;           /* больше подзаголовки внутри */
    font-weight: 600;
}

.nm-checklist-page .faq-item-body p {
    margin: 4px 0 8px;
}

/* списки */

.nm-checklist-page .faq-item-body ul {
    margin: 4px 0 8px 0;
    padding: 0;
    list-style: none; /* убираем дефолтные точки */
}

.nm-checklist-page .faq-item-body ul li {
    position: relative;
    margin-bottom: 4px;
    padding-left: 18px;
}

/* бирюзовая точка перед пунктом */

.nm-checklist-page .faq-item-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    transform: translateY(-50%);
}

/* нумерованные списки оставляем нормальными, только чуть подправим отступы */

.nm-checklist-page .faq-item-body ol {
    margin: 4px 0 8px 18px;
    padding: 0;
}

.nm-checklist-page .faq-item-body ol li {
    margin-bottom: 4px;
}

/* FINAL BLOCK */

.nm-checklist-page .checklist-final-section {
    text-align: center;
    margin-top: 10px;
}

.nm-checklist-page .checklist-final-text {
    margin: 6px 0;
    font-size: 15px;
    line-height: 1.7;
}

.nm-checklist-page .checklist-final-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
    font-size: 15px;
}

.nm-checklist-page .checklist-final-list li::before {
    content: "• ";
    opacity: 0.8;
    color: var(--primary);
}

.nm-checklist-page .checklist-final-contact {
    margin: 4px 0 0;
    font-size: 13px;
    opacity: 0.9;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 992px) {
    .nm-checklist-page .checklist-hero {
        padding: 90px 0 44px;
    }

    .nm-checklist-page .checklist-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nm-checklist-page .checklist-hero {
        padding: 80px 0 32px;
    }

    .nm-checklist-page .checklist-hero-inner {
        max-width: 100%;
    }

    .nm-checklist-page .faq-section-title {
        font-size: 20px;
    }

    .nm-checklist-page .faq-item-header {
        padding: 14px 16px;
        font-size: 15px;
    }

    .nm-checklist-page .faq-item-body {
        padding: 0 16px 14px;
        font-size: 14px;
    }

    .nm-checklist-page .checklist-sections {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .nm-checklist-page .checklist-hero h1 {
        font-size: 28px;
    }

    .nm-checklist-page .checklist-hero-subtitle {
        font-size: 16px;
    }

    .nm-checklist-page .checklist-hero-text {
        max-width: 100%;
        font-size: 14px;
    }
}
