/* ── VARIABLES ── */
:root {
    --navy:       #1B3A6B;
    --green:      #00A86B;
    --green-dark: #007A4D;
    --red:        #E63946;
    --bg:         #EEF3FB;
    --card:       #FFFFFF;
    --text:       #1a1a2e;
    --muted:      #6c7a93;
}

* { box-sizing: border-box; }

body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

/* ── HEADER ── */
.orccb-header {
    background: var(--navy);
    padding: 1rem 1.25rem;
}
.orccb-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: -0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.orccb-logo .beaver { font-size: 1.8rem; }
.orccb-logo .badge-or {
    background: var(--green);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    padding: .15rem .45rem;
    border-radius: 4px;
    letter-spacing: .05em;
    vertical-align: middle;
}
.orccb-tagline {
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    margin: 0;
}
.orccb-nav {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: .4rem 1.25rem;
}
.orccb-nav a {
    color: rgba(255,255,255,.65);
    font-size: .78rem;
    text-decoration: none;
    margin-right: 1.25rem;
    transition: color .15s;
}
.orccb-nav a:hover { color: #fff; }
.orccb-nav a.active { color: #6EE7B7; font-weight: 700; }

/* ── HERO ── */
.orccb-hero {
    background: var(--navy);
    padding: 2rem 1.25rem 3rem;
    text-align: center;
}
.orccb-hero h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 5vw, 2.6rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: .75rem;
}
.orccb-hero h1 em {
    font-style: normal;
    color: #6EE7B7;
}
.orccb-hero p {
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    margin-bottom: 1.75rem;
}

/* ── PAGE HERO (for inner pages) ── */
.orccb-page-hero {
    background: var(--navy);
    padding: 2rem 1.25rem 2.5rem;
}
.orccb-page-hero h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: .5rem;
    max-width: 520px;
}
.orccb-page-hero p {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    max-width: 520px;
    margin: 0;
}

/* ── PAGE CONTENT ── */
.orccb-content {
    padding: 2rem 1.25rem;
    max-width: 520px;
    margin: 0 auto;
}
.orccb-content h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: .6rem;
}
.orccb-content h2:first-child { margin-top: 0; }
.orccb-content p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: .75rem;
}
.orccb-content ul {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.75;
    padding-left: 1.25rem;
}
.orccb-content a { color: var(--green); font-weight: 600; }
.orccb-breadcrumb {
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    max-width: 520px;
    margin-bottom: .75rem;
}
.orccb-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.orccb-breadcrumb a:hover { color: #fff; }

/* ── SEARCH BOX ── */
.search-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,.18);
    max-width: 520px;
    margin: 0 auto;
}
.search-card label {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .5rem;
    display: block;
}
.ccb-input {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: .05em;
    color: var(--navy);
    border: 3px solid #dde4f0;
    border-radius: 12px;
    padding: .75rem 1rem;
    width: 100%;
    text-align: center;
    transition: border-color .2s;
    background: #f8faff;
}
.ccb-input:focus {
    outline: none;
    border-color: var(--green);
    background: #fff;
}
.ccb-input::placeholder { color: #c5cfe0; font-weight: 700; }

.btn-check-it {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: .85rem 1rem;
    width: 100%;
    margin-top: .75rem;
    cursor: pointer;
    transition: background .2s, transform .1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.btn-check-it:hover { background: var(--green-dark); }
.btn-check-it:active { transform: scale(.98); }

/* ── RESULT ZONE ── */
#result-zone {
    max-width: 520px;
    margin: 1.5rem auto 0;
    padding: 0 .5rem;
}

/* ── STATS STRIP ── */
.stats-strip {
    background: #fff;
    border-top: 1px solid #e5eaf4;
    padding: .9rem 1.25rem;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--navy);
    line-height: 1;
}
.stat-label {
    font-size: .7rem;
    color: var(--muted);
    margin-top: .1rem;
}

/* ── HOW IT WORKS ── */
.how-section { padding: 2.5rem 1.25rem; }
.how-section h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 1.25rem;
    text-align: center;
}
.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: .75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.step-num {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--green);
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
}
.step-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    color: var(--navy);
    margin-bottom: .2rem;
}
.step-desc { font-size: .82rem; color: var(--muted); margin: 0; }

/* ── WHY SECTION ── */
.why-section {
    background: var(--navy);
    padding: 2.5rem 1.25rem;
    color: #fff;
}
.why-section h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    text-align: center;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
}
.why-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.why-text strong { font-size: .9rem; display: block; margin-bottom: .1rem; }
.why-text span { font-size: .8rem; color: rgba(255,255,255,.65); }

/* ── SEO CONTENT ── */
.seo-section { padding: 2.5rem 1.25rem; }
.seo-section h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: .75rem;
}
.seo-section p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── FAQ ── */
.faq-section { padding: 0 1.25rem 2.5rem; }
.faq-section h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1rem;
    text-align: center;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: .6rem;
    box-shadow: 0 1px 6px rgba(0,0,0,.04);
}
.faq-q {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .88rem;
    color: var(--navy);
    margin-bottom: .35rem;
}
.faq-a { font-size: .82rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── RELATED LINKS ── */
.related-section { padding: 0 1.25rem 2.5rem; }
.related-section h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: .75rem;
}
.related-card {
    background: #fff;
    border-radius: 12px;
    padding: .9rem 1.25rem;
    margin-bottom: .5rem;
    box-shadow: 0 1px 6px rgba(0,0,0,.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--navy);
    transition: box-shadow .15s;
}
.related-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); color: var(--navy); }
.related-card-title { font-size: .88rem; font-weight: 700; }
.related-card-desc { font-size: .75rem; color: var(--muted); margin-top: .1rem; }

/* ── FOOTER ── */
.orccb-footer {
    background: #111827;
    color: rgba(255,255,255,.5);
    padding: 1.5rem 1.25rem;
    text-align: center;
    font-size: .75rem;
}
.orccb-footer a { color: var(--green); text-decoration: none; }

/* ── LOADER ── */
.orccb-spinner {
    display: none;
    text-align: center;
    padding: 2rem;
    color: var(--navy);
}
.orccb-spinner .beaver-spin {
    font-size: 2.5rem;
    display: inline-block;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESULT CARDS ── */
.result-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    margin-top: 1.25rem;
    text-align: left;
}
.result-status-bar {
    padding: .75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
}
.result-status-bar.active   { background: #00A86B; color: #fff; }
.result-status-bar.inactive { background: #E63946; color: #fff; }
.result-status-bar.notfound { background: #6c7a93; color: #fff; }
.result-body { padding: 1.25rem; }
.result-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #1B3A6B;
    margin-bottom: .2rem;
}
.result-location {
    font-size: .82rem;
    color: #6c7a93;
    margin-bottom: 1rem;
}
.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin-bottom: 1rem;
}
.result-cell {
    background: #EEF3FB;
    border-radius: 10px;
    padding: .65rem .85rem;
}
.result-cell-label {
    font-size: .68rem;
    color: #6c7a93;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .2rem;
}
.result-cell-value {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .92rem;
    color: #1B3A6B;
}
.result-cell-value.ok   { color: #00A86B; }
.result-cell-value.warn { color: #E63946; }
.result-divider {
    border: none;
    border-top: 1px solid #e5eaf4;
    margin: .75rem 0;
}
.btn-full-profile {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    background: #1B3A6B;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: .8rem 1rem;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: background .2s;
}
.btn-full-profile:hover { background: #0f2447; color: #fff; }
.result-disclaimer {
    font-size: .72rem;
    color: #9aa3b2;
    text-align: center;
    margin-top: .75rem;
    line-height: 1.5;
}
.result-expired-warning {
    background: #fff3cd;
    border-left: 4px solid #E63946;
    padding: .85rem 1.25rem;
    font-size: .82rem;
    color: #7a3030;
    line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 575px) {
    .orccb-logo img { height: 36px !important; }
}
@media (min-width: 576px) {
    .orccb-hero { padding: 3rem 1.5rem 4rem; }
    .orccb-page-hero { padding: 2.5rem 1.5rem 3rem; }
    .search-card { padding: 2rem; }
}


.doc-wrap {
	max-width: 680px; margin: 2rem auto; background: #fff;
	border-radius: 16px; padding: 2rem 2rem 3rem;
	box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.doc-wrap h1 {
	font-family: 'Nunito', sans-serif; font-weight: 900;
	font-size: 1.6rem; color: var(--navy); margin-bottom: .25rem;
}
.doc-date { font-size: .8rem; color: #9aa3b2; margin-bottom: 2rem; }
.doc-wrap h2 {
	font-family: 'Nunito', sans-serif; font-weight: 800;
	font-size: 1.05rem; color: var(--navy); margin-top: 2rem; margin-bottom: .5rem;
}
.doc-wrap p, .doc-wrap li { font-size: .9rem; color: #444; line-height: 1.75; }
.doc-wrap a { color: var(--green); font-weight: 600; }
.doc-wrap ul { padding-left: 1.4rem; }
