:root {
    --color-primary: #2a7de1;
    --color-primary-dark: #1e5bb8;
    --color-cta: #25d366;
    --color-cta-hover: #1dae56;
    --color-text: #333333;
    --color-muted: #4a5568;
    --color-border: #e2e8f0;
    --color-bg-soft: #f5f7fa;
    --color-page-bg: #f5f7fa;
    --font: Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
    --article-max: 44rem;
    --site-max: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--color-text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

.main-content {
    min-height: 50vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    max-width: var(--site-max);
    margin: 0 auto;
    padding: 0.85rem clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    flex-wrap: nowrap;
}

.logo {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo:hover {
    color: var(--color-primary-dark);
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.site-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
}

.site-nav .nav-parent-btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--color-text);
    font: inherit;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: default;
    padding: 0;
}

/* Wide screens: whole links wrap to new rows; labels never break mid-phrase */
@media (min-width: 1024px) {
    .site-nav {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        min-width: 0;
    }

    .site-nav ul {
        justify-content: flex-end;
        align-items: center;
        flex-wrap: wrap;
        row-gap: 0.45rem;
        column-gap: 0.65rem;
    }

    .site-nav li {
        flex-shrink: 0;
    }

    .site-nav a {
        white-space: nowrap;
        font-size: 0.8125rem;
        padding: 0.2rem 0;
    }

    .site-nav .nav-parent-btn {
        white-space: nowrap;
        font-size: 0.8125rem;
        padding: 0.2rem 0;
    }
}

@media (min-width: 1280px) {
    .site-nav ul {
        column-gap: 0.85rem;
    }

    .site-nav a {
        font-size: 0.875rem;
    }

    .site-nav .nav-parent-btn {
        font-size: 0.875rem;
    }
}

@media (min-width: 1440px) {
    .site-nav ul {
        column-gap: 1rem;
    }

    .site-nav a {
        font-size: 0.9375rem;
    }

    .site-nav .nav-parent-btn {
        font-size: 0.9375rem;
    }
}

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

.site-nav .nav-parent-btn:hover {
    color: var(--color-primary);
}

.site-nav li {
    position: relative;
}

.site-nav .submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0.5rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
    min-width: 18rem;
    z-index: 70;
}

.site-nav .submenu li {
    border: none;
}

.site-nav .submenu a {
    display: block;
    padding: 0.45rem 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .site-nav .has-dropdown:hover > .submenu,
    .site-nav .has-dropdown:focus-within > .submenu {
        display: block;
        position: absolute;
        top: calc(100% + 0.4rem);
        left: 0;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.nav-toggle-bar {
    width: 1.2rem;
    height: 2px;
    background: var(--color-primary);
    margin: 0 auto;
}

.page-hero {
    background: linear-gradient(165deg, #eef6fc 0%, #fff 50%);
    padding: 2.25rem 1.25rem 2rem;
    border-bottom: 1px solid var(--color-border);
}

.page-hero-inner {
    max-width: var(--article-max);
    margin: 0 auto;
}

.page-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.65rem, 4.5vw, 2.35rem);
    line-height: 1.2;
    color: #0f172a;
}

.page-hero .lead {
    margin: 0;
    font-size: 1.125rem;
    color: var(--color-muted);
    max-width: 38rem;
}

.article {
    max-width: var(--article-max);
    margin: 0 auto;
    padding: 2rem clamp(1.25rem, 4vw, 2.5rem) 3rem;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
}

@media (min-width: 768px) {
    .article {
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        padding: 2.5rem clamp(1.5rem, 4vw, 2.5rem) 3.5rem;
    }
}

.section {
    margin-bottom: 2.25rem;
}

.section h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.28rem, 3vw, 1.48rem);
    color: #0f172a;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--color-primary);
}

.section h3 {
    margin: 1.35rem 0 0.5rem;
    font-size: 1.05rem;
    color: var(--color-primary-dark);
}

.section p {
    margin: 0 0 1rem;
}

.section-panel {
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
    .section-panel {
        padding: 1.75rem 1.5rem;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }
}

.figure-block {
    margin: 1.5rem 0 2rem;
}

.figure-block img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid var(--color-border);
}

.figure-hero img {
    max-height: 70vh;
    object-fit: cover;
}

.list-plain {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
}

.list-plain li {
    margin-bottom: 0.45rem;
}

.list-myths li {
    margin-bottom: 0.75rem;
}

.steps {
    margin: 0;
    padding-left: 1.2rem;
}

.steps li {
    margin-bottom: 0.8rem;
}

.cta-box {
    margin: 2rem 0;
    padding: 1.5rem 1.25rem;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    background: #fafbfc;
}

.cta-box--tint {
    background: linear-gradient(135deg, #f0f7fc, #f6fdf9);
    border-color: rgba(10, 102, 194, 0.15);
}

.cta-box p {
    margin: 0 0 1rem;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff !important;
    background: var(--color-cta);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.35);
    transition: background 0.2s, transform 0.15s;
}

.btn-wa:hover {
    background: var(--color-cta-hover);
    transform: translateY(-1px);
}

.btn-wa:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.btn-wa--lg {
    padding: 0.9rem 1.85rem;
    font-size: 1rem;
}

.cta-final {
    margin: 2.5rem -1.25rem 2rem;
    padding: 2.25rem 1.25rem;
    background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

@media (min-width: 768px) {
    .cta-final {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2.5rem 2rem;
    }
}

.cta-final h2 {
    color: #fff;
    border: none;
    padding: 0;
    margin: 0 0 0.85rem;
    font-size: clamp(1.3rem, 3.5vw, 1.6rem);
}

.cta-final p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.25rem;
}

.cta-final .note {
    margin: 1rem 0 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
}

.trust-strip {
    padding: 1.25rem;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.trust-strip h2 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    color: var(--color-primary);
    border: none;
    padding: 0;
}

.trust-strip p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-muted);
}

.disclaimer-block {
    padding: 1.25rem;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.disclaimer-block h2 {
    margin: 0 0 0.45rem;
    font-size: 0.95rem;
    color: #92400e;
    border: none;
    padding: 0;
}

.disclaimer-block p {
    margin: 0;
    font-size: 0.875rem;
    color: #78350f;
}

.site-footer {
    background: #f1f5f9;
    border-top: 1px solid var(--color-border);
    padding: 1.75rem 1.25rem;
}

.footer-inner {
    max-width: var(--site-max);
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1.15rem;
    margin: 0 0 1rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
    color: var(--color-primary-dark);
}

.related-articles {
    margin-top: 2rem;
    padding: 1.5rem 1.25rem;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: 10px;
}

.related-articles h2 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: #0f172a;
    border: none;
    padding: 0;
}

.related-articles__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.related-articles__link {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.65rem 0.75rem;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s;
}

.related-articles__link:hover {
    background: #fff;
    border-color: var(--color-border);
}

.related-articles__title {
    font-weight: 600;
    color: var(--color-primary);
}

.related-articles__desc {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.45;
}

.related-articles__more {
    margin: 1.15rem 0 0;
    font-size: 0.875rem;
    color: var(--color-muted);
}

.related-articles__more a {
    color: var(--color-primary);
    font-weight: 500;
}

.topic-directory__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

@media (min-width: 600px) {
    .topic-directory__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.topic-directory__link {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem 0.85rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.topic-directory__link:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(10, 102, 194, 0.08);
}

.topic-directory__title {
    font-weight: 600;
    color: var(--color-primary);
}

.topic-directory__desc {
    font-size: 0.8125rem;
    color: var(--color-muted);
    line-height: 1.4;
}

.contact-form {
    max-width: 32rem;
    margin-top: 1rem;
}

.contact-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-field {
    margin-bottom: 1.15rem;
}

.form-field label {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.4rem;
    color: #0f172a;
}

.form-required {
    color: #b45309;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.65rem 0.75rem;
    font: inherit;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-field textarea {
    resize: vertical;
    min-height: 8rem;
    line-height: 1.5;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.15);
}

.form-actions {
    margin-top: 1.25rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--color-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
    background: var(--color-primary-dark);
}

.btn-submit:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.form-feedback {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.15rem;
    font-size: 0.9375rem;
}

.form-feedback--success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.form-feedback--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.form-feedback-follow {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
}

.form-feedback-follow a {
    color: var(--color-primary);
    font-weight: 500;
}

.footer-disclaimer {
    margin: 0 0 0.85rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--color-muted);
}

.footer-copy {
    margin: 0;
    font-size: 0.75rem;
    color: #64748b;
}

.wa-float-button {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: var(--color-cta);
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.wa-float-button:hover {
    background: var(--color-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
}

.wa-float-button:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.28);
    outline-offset: 3px;
}

.wa-float-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
}

.wa-float-button__icon svg {
    width: 100%;
    height: 100%;
}

.wa-float-button__label {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

.wa-popup {
    position: fixed;
    right: 1rem;
    bottom: 4.9rem;
    z-index: 89;
    width: min(21rem, calc(100vw - 2rem));
    padding: 1rem 1rem 0.95rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.wa-popup.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.wa-popup__close {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.wa-popup__close:hover {
    background: #f8fafc;
    color: #0f172a;
}

.wa-popup__text {
    margin: 0 1.75rem 0.9rem 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #0f172a;
}

.wa-popup__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    background: var(--color-cta);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.18s ease;
}

.wa-popup__cta:hover {
    background: var(--color-cta-hover);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Tablet + phone: hamburger — horizontal bar only on wide desktop */
@media (max-width: 1023px) {
    .nav-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        flex-shrink: 0;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--color-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 60;
    }

    .site-nav.is-open {
        max-height: 84rem;
    }

    .site-nav ul {
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 1rem 1.25rem 1.25rem;
        gap: 0;
    }

    .site-nav li {
        border-bottom: 1px solid var(--color-border);
    }

    .site-nav li:last-child {
        border-bottom: none;
    }

    .site-nav a {
        display: block;
        padding: 0.65rem 0;
        white-space: normal;
        font-size: 0.9375rem;
    }

    .site-nav .nav-parent-btn {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0.65rem 0;
        white-space: normal;
        font-size: 0.9375rem;
    }

    .site-nav .submenu {
        display: block;
        position: static;
        min-width: 0;
        margin: 0.15rem 0 0.5rem;
        padding: 0 0 0 0.75rem;
        border: none;
        border-left: 2px solid #dbeafe;
        border-radius: 0;
        box-shadow: none;
    }

    .site-nav .submenu a {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 599px) {
    .wa-float-button {
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.8rem 0.9rem;
    }

    .wa-float-button__label {
        display: none;
    }

    .wa-popup {
        right: 0.75rem;
        bottom: 4.35rem;
        width: min(20rem, calc(100vw - 1.5rem));
    }
}

/* ----- Page 2: early signs (softer bands, cards, checklists) ----- */

.page2 {
    padding-top: 2.5rem;
}

@media (min-width: 768px) {
    .page2 {
        padding-top: 3rem;
    }
}

.page2-band {
    background: #eef1f5;
    border: 1px solid #e0e5eb;
    border-radius: 14px;
    padding: 1.65rem 1.2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .page2-band {
        padding: 2rem 1.75rem;
        margin-bottom: 2.75rem;
    }
}

.page2-band--tight {
    margin-bottom: 1.75rem;
}

.page2-band h2 {
    margin-top: 0;
}

.page2-band .section {
    margin-bottom: 0;
}

.sign-card-grid {
    display: grid;
    gap: 1rem;
    margin: 1rem 0 0;
}

@media (min-width: 600px) {
    .sign-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sign-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.sign-card h3 {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.sign-card ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.98rem;
}

.sign-card li {
    margin-bottom: 0.35rem;
}

.age-block {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #dde3ea;
    padding: 1.15rem 1.2rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.age-block:last-child {
    margin-bottom: 0;
}

.age-block h3 {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
    color: var(--color-primary-dark);
}

.age-block ul {
    margin: 0;
    padding-left: 1.15rem;
}

.age-block li {
    margin-bottom: 0.4rem;
}

.ui-checklist {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.ui-checklist li {
    position: relative;
    padding: 0.55rem 0.65rem 0.55rem 2.35rem;
    margin-bottom: 0.5rem;
    background: #fff;
    border: 1px solid #dce2e9;
    border-radius: 8px;
    font-size: 0.98rem;
}

.ui-checklist li::before {
    content: "";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.05rem;
    height: 1.05rem;
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    background: #f8fafc;
}

.ui-checklist.ui-checklist--flags li::before {
    content: "!";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #b45309;
    border-color: #f59e0b;
    background: #fffbeb;
    line-height: 1;
    transform: translateY(-50%);
}

.scenario-box {
    background: #fff;
    border-left: 4px solid var(--color-primary);
    padding: 0.85rem 1rem;
    margin-bottom: 0.85rem;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.scenario-box p {
    margin: 0;
    font-size: 0.98rem;
}

.page2 .section {
    margin-bottom: 2.5rem;
}

.page2 .figure-block {
    margin-top: 1.25rem;
}

.page2-hero .lead {
    max-width: 40rem;
}

/* ----- Page 3: causes (darker slabs, myth/fact comparison) ----- */

.page3 {
    padding-top: 2.5rem;
}

@media (min-width: 768px) {
    .page3 {
        padding-top: 3rem;
    }
}

.page3-slab {
    background: #dfe4ec;
    border: 1px solid #cdd5e1;
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
    .page3-slab {
        padding: 2rem 1.85rem;
    }
}

.page3-slab--deep {
    background: #d1d9e6;
    border-color: #b8c4d4;
}

.page3-slab h2 {
    margin-top: 0;
}

.page3-slab .section {
    margin-bottom: 0;
}

.page3-highlight {
    background: linear-gradient(90deg, rgba(10, 102, 194, 0.1), rgba(10, 102, 194, 0.02));
    border-left: 4px solid var(--color-primary);
    padding: 1.15rem 1.2rem 1.15rem 1.35rem;
    border-radius: 0 10px 10px 0;
    margin: 1.25rem 0;
}

.page3-highlight p:last-child {
    margin-bottom: 0;
}

.page3-prose p {
    margin: 0 0 1.1rem;
    line-height: 1.7;
}

.myth-fact-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0 0;
}

.myth-fact-pair {
    display: grid;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #c5ced9;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

@media (min-width: 640px) {
    .myth-fact-pair {
        grid-template-columns: 1fr 1fr;
    }
}

.myth-block {
    background: #fef2f2;
    border-bottom: 1px solid #fecaca;
    padding: 1.15rem 1.2rem;
}

@media (min-width: 640px) {
    .myth-block {
        border-bottom: none;
        border-right: 1px solid #fecaca;
    }
}

.myth-block .label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #b91c1c;
    margin-bottom: 0.4rem;
}

.fact-block {
    background: #ecfdf5;
    padding: 1.15rem 1.2rem;
}

.fact-block .label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #047857;
    margin-bottom: 0.4rem;
}

.myth-block p,
.fact-block p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
}

.page3 .section {
    margin-bottom: 2.35rem;
}

.page3 .section h2 {
    border-bottom-color: #94a3b8;
}

.page3-reassure {
    background: #f0f4f8;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 1.75rem 1.35rem;
    margin: 2rem 0;
}

.page3-reassure h2 {
    border: none;
    padding: 0;
    margin: 0 0 0.75rem;
    color: var(--color-primary-dark);
}

.page3-reassure p {
    margin: 0 0 0.85rem;
    line-height: 1.7;
}

.page3-reassure p:last-child {
    margin-bottom: 0;
}

/* ----- Autism vs ADHD: tables, side-by-side ----- */

.compare-page {
    padding-top: 2.5rem;
}

@media (min-width: 768px) {
    .compare-page {
        padding-top: 3rem;
    }
}

.compare-page .section {
    margin-bottom: 2.5rem;
}

.compare-page .section h2 {
    margin-top: 0;
}

.compare-split {
    display: grid;
    gap: 1rem;
    margin: 1.25rem 0 0;
}

@media (min-width: 700px) {
    .compare-split {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
}

.compare-panel {
    border-radius: 12px;
    padding: 1.25rem 1.3rem;
    border: 1px solid var(--color-border);
}

.compare-panel--asd {
    background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
    border-color: #bfdbfe;
}

.compare-panel--adhd {
    background: linear-gradient(180deg, #fff7ed 0%, #fffbeb 100%);
    border-color: #fed7aa;
}

.compare-panel h3 {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
}

.compare-panel--asd h3 {
    color: var(--color-primary-dark);
}

.compare-panel--adhd h3 {
    color: #c2410c;
}

.compare-panel p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
}

.table-scroll {
    margin: 1.25rem 0;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.compare-table {
    width: 100%;
    min-width: 36rem;
    border-collapse: collapse;
    font-size: 0.9375rem;
    line-height: 1.5;
    background: #fff;
}

.compare-table caption {
    caption-side: top;
    text-align: left;
    padding: 0.85rem 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-muted);
    background: #f1f5f9;
    border-bottom: 1px solid #cbd5e1;
}

.compare-table th,
.compare-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #e2e8f0;
}

.compare-table thead th {
    background: #0f172a;
    color: #fff;
    font-weight: 600;
    border-bottom: none;
}

.compare-table thead th.col-asd {
    background: #1d4ed8;
}

.compare-table thead th.col-adhd {
    background: #ea580c;
}

.compare-table tbody th[scope="row"] {
    background: #f8fafc;
    font-weight: 600;
    color: #334155;
    width: 22%;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table td.col-asd-cell {
    background: rgba(219, 234, 254, 0.35);
}

.compare-table td.col-adhd-cell {
    background: rgba(255, 237, 213, 0.45);
}

.compare-callout {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .compare-callout {
        grid-template-columns: 1fr 1fr;
    }
}

.compare-callout__box {
    padding: 1.1rem 1.2rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 0.97rem;
    line-height: 1.6;
}

.compare-callout__box strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.compare-callout__box--a {
    background: #eff6ff;
    border-color: #93c5fd;
}

.compare-callout__box--a strong {
    color: #1d4ed8;
}

.compare-callout__box--b {
    background: #fff7ed;
    border-color: #fdba74;
}

.compare-callout__box--b strong {
    color: #c2410c;
}

.compare-page .section-panel {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

/* ----- Diagnosis process: numbered steps, progress track ----- */

.dx-page {
    padding-top: 2.5rem;
}

@media (min-width: 768px) {
    .dx-page {
        padding-top: 3rem;
    }
}

.dx-page .section {
    margin-bottom: 2.5rem;
}

.dx-progress-intro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 0.65rem 1rem;
    background: linear-gradient(90deg, #eff6ff, #f8fafc);
    border-radius: 10px;
    border: 1px solid #bfdbfe;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.dx-progress-intro .dx-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dx-step-track {
    position: relative;
    margin: 1.5rem 0 2rem;
    padding-left: 0;
}

.dx-step-track::before {
    content: "";
    position: absolute;
    left: 1.15rem;
    top: 2.5rem;
    bottom: 2.5rem;
    width: 3px;
    background: linear-gradient(180deg, var(--color-primary), #93c5fd);
    border-radius: 3px;
}

@media (max-width: 480px) {
    .dx-step-track::before {
        left: 0.9rem;
    }
}

.dx-step-block {
    position: relative;
    padding-left: 3.5rem;
    padding-bottom: 1.75rem;
    margin-bottom: 0.25rem;
}

.dx-step-block:last-child {
    padding-bottom: 0;
}

.dx-step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(10, 102, 194, 0.35);
    z-index: 1;
}

.dx-step-block h3 {
    margin: 0 0 0.5rem;
    font-size: 1.08rem;
    color: #0f172a;
}

.dx-step-block p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--color-text);
}

.dx-pro-list {
    margin: 1rem 0 0;
    padding: 1rem 1.15rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid var(--color-border);
}

.dx-pro-list h3 {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    color: var(--color-primary-dark);
}

.dx-pro-list ul {
    margin: 0;
    padding-left: 1.2rem;
}

.dx-pro-list li {
    margin-bottom: 0.4rem;
    font-size: 0.97rem;
}

.dx-timeline {
    margin: 1rem 0 0;
    padding: 1.1rem 1.2rem;
    border-left: 4px solid #25d366;
    background: #f0fdf4;
    border-radius: 0 10px 10px 0;
    font-size: 0.97rem;
    line-height: 1.6;
}

.dx-fears {
    counter-reset: fear;
}

.dx-fear-item {
    position: relative;
    padding: 1rem 1.15rem 1rem 3rem;
    margin-bottom: 0.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.dx-fear-item::before {
    counter-increment: fear;
    content: counter(fear);
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.65rem;
    height: 1.65rem;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dx-fear-item p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.55;
}

/* ----- Home support guide: routine cards, practical blocks ----- */

.guide-page {
    padding-top: 2.5rem;
}

@media (min-width: 768px) {
    .guide-page {
        padding-top: 3rem;
    }
}

.guide-page .section {
    margin-bottom: 2.5rem;
}

.guide-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.35rem 1.35rem 1.4rem;
    margin-bottom: 1.15rem;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.guide-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    color: var(--color-primary-dark);
}

.guide-card p,
.guide-card li {
    font-size: 0.98rem;
    line-height: 1.6;
}

.guide-card p:last-child {
    margin-bottom: 0;
}

.guide-card ul {
    margin: 0.5rem 0 0;
    padding-left: 1.15rem;
}

.guide-card li {
    margin-bottom: 0.35rem;
}

.guide-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--color-primary);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.sample-day {
    display: grid;
    gap: 1rem;
    margin: 1.25rem 0 0;
}

@media (min-width: 700px) {
    .sample-day {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sample-block {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.2rem 1.15rem;
    border-top: 4px solid var(--color-primary);
}

.sample-block--afternoon {
    border-top-color: #2563eb;
}

.sample-block--evening {
    border-top-color: #059669;
}

.sample-block h3 {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    color: #0f172a;
}

.sample-block ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.93rem;
}

.sample-block li {
    margin-bottom: 0.45rem;
    line-height: 1.5;
}

.guide-mistakes {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 1.35rem 1.3rem;
    margin: 1rem 0 0;
}

.guide-mistakes h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: #92400e;
}

.guide-mistakes ul {
    margin: 0;
    padding-left: 1.15rem;
}

.guide-mistakes li {
    margin-bottom: 0.55rem;
    font-size: 0.97rem;
    line-height: 1.55;
}

.guide-actions {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 0;
}

@media (min-width: 560px) {
    .guide-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

.guide-action-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.guide-action-item span {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-reassure {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 1.65rem 1.35rem;
    margin: 2rem 0;
}

.guide-reassure h2 {
    margin: 0 0 0.75rem;
    border: none;
    padding: 0;
    color: var(--color-primary-dark);
}

.guide-reassure p {
    margin: 0 0 0.85rem;
    line-height: 1.65;
}

.guide-reassure p:last-child {
    margin-bottom: 0;
}

/* ----- Communication challenges: problem → solution pairs ----- */

.comm-page {
    padding-top: 2.5rem;
}

@media (min-width: 768px) {
    .comm-page {
        padding-top: 3rem;
    }
}

.comm-page .section {
    margin-bottom: 2.5rem;
}

.prob-sol-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.25rem 0 0;
}

.prob-sol-pair {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.prob-sol-pair__problem {
    background: #fffbeb;
    border-bottom: 1px solid #fde68a;
    padding: 1rem 1.15rem;
}

.prob-sol-pair__problem strong {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #b45309;
    margin-bottom: 0.35rem;
}

.prob-sol-pair__solution {
    background: #ecfdf5;
    padding: 1rem 1.15rem;
}

.prob-sol-pair__solution strong {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #047857;
    margin-bottom: 0.35rem;
}

.prob-sol-pair__problem p,
.prob-sol-pair__solution p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.55;
}

.comm-situation {
    background: #f8fafc;
    border-left: 4px solid var(--color-primary);
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.96rem;
    line-height: 1.5;
}

.comm-situation p {
    margin: 0;
}

.comm-tools {
    display: grid;
    gap: 0.85rem;
    margin: 1rem 0 0;
}

@media (min-width: 560px) {
    .comm-tools {
        grid-template-columns: repeat(3, 1fr);
    }
}

.comm-tool-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1rem 1rem;
    font-size: 0.93rem;
    line-height: 1.5;
}

.comm-tool-card strong {
    display: block;
    color: var(--color-primary-dark);
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.comm-progress-list {
    display: grid;
    gap: 0.65rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 600px) {
    .comm-progress-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.comm-progress-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comm-progress-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 0.55rem;
    height: 0.55rem;
    background: #25d366;
    border-radius: 50%;
}

/* ----- Speech delay: milestone comparison ----- */

.speech-page {
    padding-top: 2.5rem;
}

@media (min-width: 768px) {
    .speech-page {
        padding-top: 3rem;
    }
}

.speech-page .section {
    margin-bottom: 2.5rem;
}

.milestone-compare {
    display: grid;
    gap: 1rem;
    margin: 1.25rem 0 0;
}

@media (min-width: 640px) {
    .milestone-compare {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

.milestone-col {
    border-radius: 12px;
    padding: 1.2rem 1.25rem;
    border: 1px solid var(--color-border);
}

.milestone-col h3 {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.milestone-col--typical {
    background: linear-gradient(180deg, #ecfdf5 0%, #fff 100%);
    border-color: #a7f3d0;
}

.milestone-col--typical h3 {
    color: #047857;
}

.milestone-col--watch {
    background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
    border-color: #fcd34d;
}

.milestone-col--watch h3 {
    color: #b45309;
}

.milestone-col ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.93rem;
    line-height: 1.5;
}

.milestone-col li {
    margin-bottom: 0.4rem;
}

.milestone-note {
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--color-muted);
}

/* ----- Therapy options: type cards, decision guide, checklist ----- */

.therapy-page {
    padding-top: 2.5rem;
}

@media (min-width: 768px) {
    .therapy-page {
        padding-top: 3rem;
    }
}

.therapy-page .section {
    margin-bottom: 2.5rem;
}

.therapy-type-block {
    margin: 2rem 0;
    padding: 1.5rem 1.25rem 1.6rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.therapy-type-block:first-of-type {
    margin-top: 1rem;
}

.therapy-type-block h3 {
    margin: 0 0 0.65rem;
    font-size: 1.15rem;
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.therapy-type-block h3::before {
    content: "";
    width: 4px;
    height: 1.25rem;
    background: var(--color-primary);
    border-radius: 2px;
}

.therapy-type-block p {
    margin: 0 0 0.85rem;
    font-size: 0.98rem;
    line-height: 1.65;
}

.therapy-type-block p:last-child {
    margin-bottom: 0;
}

.therapy-type-block .figure-block {
    margin: 1rem 0 0;
}

.therapy-decision {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 1.5rem 1.35rem;
    margin: 1.25rem 0 0;
}

.therapy-decision h3 {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    color: #0f172a;
}

.therapy-decision ul {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.96rem;
    line-height: 1.55;
}

.therapy-decision li {
    margin-bottom: 0.45rem;
}

.therapy-checklist {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.therapy-checklist li {
    position: relative;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    margin-bottom: 0.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.therapy-checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0.85rem;
    top: 0.85rem;
    width: 1.35rem;
    height: 1.35rem;
    background: #25d366;
    color: #fff;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.35rem;
}

.therapy-mistakes-grid {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 0;
}

@media (min-width: 600px) {
    .therapy-mistakes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.therapy-mistake-card {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 1rem 1rem;
    font-size: 0.92rem;
    line-height: 1.5;
}

.therapy-mistake-card strong {
    display: block;
    color: #92400e;
    margin-bottom: 0.35rem;
    font-size: 0.88rem;
}

/* ----- Daily life: day timeline (morning → evening) ----- */

.day-page {
    padding-top: 2.5rem;
}

@media (min-width: 768px) {
    .day-page {
        padding-top: 3rem;
    }
}

.day-page .section {
    margin-bottom: 2.5rem;
}

.day-timeline {
    position: relative;
    margin: 1.75rem 0 0;
    padding-left: 1.35rem;
    border-left: 3px solid #e2e8f0;
    margin-left: 0.35rem;
}

.day-segment {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 0.25rem;
}

.day-segment::before {
    content: "";
    position: absolute;
    left: -1.35rem;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #cbd5e1;
}

.day-time {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), #2563eb);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.65rem;
}

.day-segment__body h3 {
    margin: 0 0 0.5rem;
    font-size: 1.08rem;
    color: #0f172a;
}

.day-segment__body p {
    margin: 0 0 0.85rem;
    font-size: 0.98rem;
    line-height: 1.65;
}

.day-segment__body p:last-child {
    margin-bottom: 0;
}

.day-segment__body .figure-block {
    margin-top: 1rem;
}

.day-timeline .cta-box {
    margin: 1.5rem 0 1.5rem;
}

.day-flow-soft {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem 1.25rem;
    margin: 1.5rem 0;
}

.day-flow-soft h2 {
    margin-top: 0;
}

.day-flow-soft .section {
    margin-bottom: 0;
}

/* ----- Homepage & human sitemap (Healoza marketing layout) ----- */

.home-inner {
    max-width: var(--site-max);
    margin: 0 auto;
    padding-left: clamp(1.25rem, 4vw, 2.5rem);
    padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

.home-narrow {
    max-width: 42rem;
}

.home-band {
    padding-top: clamp(2rem, 5vw, 3.25rem);
    padding-bottom: clamp(2rem, 5vw, 3.25rem);
}

.home-band--alt {
    background: #fff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.home-section-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 3.2vw, 1.75rem);
    color: #1a1a1a;
    line-height: 1.25;
}

.home-section-lead {
    margin: 0 0 1.75rem;
    color: var(--color-muted);
    max-width: 40rem;
    font-size: 1.02rem;
}

.home-hero {
    background: linear-gradient(160deg, #eef4fc 0%, #f5f7fa 45%, #fff 100%);
    border-bottom: 1px solid var(--color-border);
    padding: clamp(1.75rem, 5vw, 3rem) 0;
}

.home-hero__grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
}

@media (min-width: 900px) {
    .home-hero__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.home-hero__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    line-height: 1.15;
    color: #1a1a1a;
}

.home-hero__sub {
    margin: 0 0 1.5rem;
    font-size: 1.15rem;
    color: var(--color-muted);
    line-height: 1.55;
    max-width: 28rem;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-primary-dark);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(42, 125, 225, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}

.home-text-link {
    color: var(--color-primary-dark);
    font-weight: 700;
    text-decoration: none;
}

.home-text-link:hover {
    text-decoration: underline;
}

.home-hero__wa-note {
    margin: 1rem 0 0;
    max-width: 28rem;
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.5;
}

.home-hero__crisis {
    margin: 0.85rem 0 0;
    max-width: 28rem;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #7c2d12;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 10px;
}

.home-hero__media {
    margin: 0;
    width: 100%;
    max-width: 34rem;
    justify-self: center;
}

.home-hero__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(42, 125, 225, 0.12);
    border: 1px solid var(--color-border);
    animation: homeHeroFloat 6s ease-in-out infinite;
}

@keyframes homeHeroFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__img {
        animation: none;
    }
}

a.btn-home-primary,
.btn-home-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff !important;
    background: var(--color-primary);
    border-radius: 10px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(42, 125, 225, 0.35);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-home-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(42, 125, 225, 0.4);
}

.btn-home-primary:focus-visible {
    outline: 3px solid rgba(42, 125, 225, 0.45);
    outline-offset: 3px;
}

.btn-home-primary--lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.home-trust__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 700px) {
    .home-trust__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.home-trust__item {
    background: #fff;
    border-radius: 12px;
    padding: 1.35rem 1.25rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.home-trust__label {
    display: block;
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 0.45rem;
}

.home-trust__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.55;
}

.home-scope {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.home-scope__text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--color-text);
    padding: 1rem 1.15rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
}

.home-reviewed {
    margin: 1.75rem 0 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.home-about__text {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--color-text);
}

.home-about__text a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.home-about__text a:hover {
    text-decoration: underline;
}

.home-start__steps {
    margin: 0;
    padding: 0 0 0 1.25rem;
    max-width: 40rem;
}

.home-start__step {
    margin-bottom: 0.85rem;
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--color-text);
}

.home-start__step:last-child {
    margin-bottom: 0;
}

.home-start__step a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
}

.home-start__step a:hover {
    text-decoration: underline;
}

.home-start__hint {
    color: var(--color-muted);
    font-weight: 400;
}

.home-faq__list {
    margin-top: 0.5rem;
}

.home-faq__item {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.home-faq__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.home-faq__q {
    margin: 0 0 0.45rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
}

.home-faq__a {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--color-muted);
}

.home-faq__a a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.home-faq__a a:hover {
    text-decoration: underline;
}

.home-cta-block__crisis {
    margin: 0 0 1.25rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.home-cta-block__crisis strong {
    color: #fff;
}

.home-cta-block__alt {
    margin: 1.35rem 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.home-cta-block__alt a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.home-cta-block__alt a:hover {
    color: #e0e7ff;
}

.home-card-grid {
    display: grid;
    gap: 1.15rem;
}

@media (min-width: 600px) {
    .home-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.home-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.35rem 1.3rem 1.25rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.home-card:hover {
    border-color: rgba(42, 125, 225, 0.45);
    box-shadow: 0 8px 24px rgba(42, 125, 225, 0.12);
    transform: translateY(-2px);
}

.home-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
}

.home-card__desc {
    margin: 0 0 1rem;
    flex: 1;
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.5;
}

.home-card__cta {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
}

.home-info-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 700px) {
    .home-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.home-info-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.2rem 1.15rem 1.15rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.home-info-card h3 {
    margin: 0 0 0.8rem;
    font-size: 1.02rem;
    color: #0f172a;
}

.home-info-card .ui-checklist {
    margin-top: 0;
}

.home-impact-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 700px) {
    .home-impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-note-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.3rem 1.2rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.home-note-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.02rem;
    color: var(--color-primary-dark);
}

.home-note-card p {
    margin: 0;
    font-size: 0.97rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.home-quick-links {
    display: grid;
    gap: 1rem;
}

@media (min-width: 700px) {
    .home-quick-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-quick-link {
    padding: 1.2rem 1.15rem;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    border-top: 4px solid var(--color-primary);
}

.home-quick-link h3 {
    margin: 0 0 0.55rem;
    font-size: 1rem;
    color: #0f172a;
}

.home-quick-link p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.55;
}

.home-autism-grid {
    display: grid;
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .home-autism-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.home-autism-link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.1rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.home-autism-link:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(42, 125, 225, 0.1);
}

.home-autism-link__title {
    font-weight: 700;
    color: var(--color-primary-dark);
    font-size: 1rem;
}

.home-autism-link__desc {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.45;
}

.home-more-links {
    margin: 1.75rem 0 0;
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.home-more-links a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.home-more-links a:hover {
    text-decoration: underline;
}

.home-edu-copy {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--color-text);
}

.home-band--disclaimer {
    padding-top: clamp(1.75rem, 4vw, 2.75rem);
    padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 50%, #fff 100%);
    border-top: 1px solid var(--color-border);
}

.home-edu-notice {
    display: flex;
    gap: 1rem 1.25rem;
    align-items: flex-start;
    max-width: 44rem;
    margin: 0 auto;
    padding: clamp(1.15rem, 3vw, 1.5rem) clamp(1.15rem, 3vw, 1.65rem);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    border-left: 4px solid var(--color-primary);
}

.home-edu-notice__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 10px;
    background: linear-gradient(145deg, #e0ecff 0%, #dbeafe 100%);
    color: var(--color-primary-dark);
}

.home-edu-notice__icon svg {
    display: block;
}

.home-edu-notice__content {
    min-width: 0;
}

.home-edu-notice__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.home-edu-notice__text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--color-muted);
}

@media (max-width: 479px) {
    .home-edu-notice {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .home-edu-notice__icon {
        align-self: flex-start;
    }
}

.social-links-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-accordion {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 1rem 3rem 1rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    line-height: 1;
    color: var(--color-primary);
}

.faq-item[open] summary::after {
    content: "\2212";
}

.faq-item__body {
    padding: 0 1rem 1rem;
}

.faq-item__body p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.65;
}

.home-cta-block {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.home-cta-block__inner {
    text-align: center;
    max-width: 36rem;
}

.home-cta-block__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.45rem, 3.5vw, 1.85rem);
    color: #fff;
    line-height: 1.25;
}

.home-cta-block__text {
    margin: 0 0 1.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.6;
}

.home-cta-block .btn-home-primary {
    background: #fff;
    color: var(--color-primary-dark) !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.home-cta-block .btn-home-primary:hover {
    background: #f0f4ff;
    color: var(--color-primary-dark) !important;
}

@media (max-width: 599px) {
    .home-hero__actions {
        align-items: stretch;
    }

    .home-text-link {
        text-align: center;
        width: 100%;
    }

    .btn-home-primary,
    .btn-home-primary--lg {
        width: 100%;
    }
}

.sitemap-page {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 6vw, 4rem);
    background: var(--color-page-bg);
}

.sitemap-page__header {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--color-primary);
}

.sitemap-page__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.65rem, 3.5vw, 2.1rem);
    color: #1a1a1a;
}

.sitemap-page__intro {
    margin: 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.sitemap-page__intro code {
    font-size: 0.9em;
    background: #fff;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    border: 1px solid var(--color-border);
}

.sitemap-page__intro a {
    color: var(--color-primary);
    font-weight: 600;
}

.sitemap-section {
    margin-bottom: 2rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.35rem 1.35rem 1.15rem;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.sitemap-section__title {
    margin: 0 0 0.85rem;
    font-size: 1.125rem;
    color: var(--color-primary-dark);
}

.sitemap-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--color-text);
}

.sitemap-list li {
    margin-bottom: 0.45rem;
    line-height: 1.5;
}

.sitemap-list a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
}

.sitemap-list a:hover {
    text-decoration: underline;
}
