:root {
    --nc-blue: #0082c9;
    --nc-blue-dark: #00669e;
    --nc-navy: #081e36;
    --nc-light: #f4f6f8;
    --text: #333;
    --muted: #5f6b7a;
    --border: #e6ebf0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    padding-top: 70px;
    line-height: 1.6;
    margin: 0;
}

a {
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

ol ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
}

ol > li {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}

ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;    
    font-weight: 700;
}

li ol > li {
    margin: 0;
}

li ol > li:before {
    content: counters(item, ".") " ";
}

main p {
    margin-bottom: 0.6rem;
    margin-left: 0;
    text-indent: 0;
}

main strong {
    color: var(--nc-navy);
}

.bg-nc-navy { background-color: var(--nc-navy); }
.text-nc-blue { color: var(--nc-blue); }

.btn-nc {
    background-color: var(--nc-blue);
    color: #fff;
    border: none;
}
.btn-nc:hover {
    background-color: var(--nc-blue-dark);
    color: #fff;
}

.btn-outline-nc {
    border: 2px solid var(--nc-blue);
    color: var(--nc-blue);
    background-color: transparent;
}
.btn-outline-nc:hover {
    background-color: var(--nc-blue);
    color: #fff;
}

.hero-section {
    background: linear-gradient(135deg, #eef7fc 0%, #ffffff 100%);
    padding: 80px 0;
}

.price-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}
.price-card.popular {
    border: 2px solid var(--nc-blue);
}

.feature-list-nc {
    list-style: none;
    padding-left: 0;
}
.feature-list-nc li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}
.feature-list-nc li::before {
    content: "✓";
    color: #198754;
    font-weight: bold;
    position: absolute;
    left: 0;
}
.feature-list-nc li.disabled {
    color: #6c757d;
    text-decoration: line-through;
    opacity: 0.7;
}
.feature-list-nc li.disabled::before {
    content: "✕";
    color: #dc3545;
}

.billing-toggle .btn {
    min-width: 96px;
    border-color: #dfe5ea;
}

.billing-toggle .btn.active {
    background-color: var(--nc-blue);
    color: #fff;
    border-color: var(--nc-blue);
}

.feature-icon {
    font-size: 2rem;
    color: var(--nc-blue);
    line-height: 1;
}

.hero-icon {
    font-size: 4rem;
    color: var(--nc-blue);
    line-height: 1;
}

.page-shell {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.page-title {
    color: var(--nc-navy);
    margin-bottom: 0.5rem;
}

.page-intro {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.page-card {
    margin-bottom: 1.5rem;
}

.page-card h2 {
    color: var(--nc-navy);
    font-size: 1.15rem;
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.back-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.list-style-none {
    list-style: none;
    padding-left: 0;
}

@page {
    size: A4;
    margin: 18mm 20mm;
}

@media print {
    body {
        padding-top: 0;
        font-size: 10.5pt;
        line-height: 1.4;
        color: #111;
        background: #fff;
        font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    }

    .navbar,
    .back-link,
    footer {
        display: none !important;
    }

    .page-shell {
        max-width: none;
        padding: 0;
        margin: 0;
    }

    .page-title {
        font-size: 18pt;
        font-weight: 700;
        color: #0f172a;
        margin: 0 0 6pt;
        padding-bottom: 8pt;
        border-bottom: 1.5px solid #cbd5e1;
        letter-spacing: -0.01em;
    }

    .page-intro {
        font-size: 9.5pt;
        color: #475569;
        margin-bottom: 14pt;
    }

    main p {
        margin-bottom: 7pt;
        orphans: 3;
        widows: 3;
    }

    ol > li {
        margin-bottom: 6pt;
        page-break-inside: avoid;
    }

    ol > li:before {
        font-weight: 700;
        color: #334155;
    }

    main strong {
        color: #0f172a;
        font-weight: 700;
    }

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

    .page-card {
        margin-bottom: 0.75rem;
    }
}
