:root {
    --p360-blue: #1557ff;
    --p360-blue-2: #2f6dff;
    --p360-blue-dark: #0b3da9;
    --p360-navy: #0c1f3d;
    --p360-navy-soft: #142a4d;
    --p360-text: #22324a;
    --p360-muted: #6f8098;
    --p360-muted-2: #94a3b8;
    --p360-line: #dce5f1;
    --p360-line-soft: #edf2f7;
    --p360-bg: #f5f8fc;
    --p360-white: #ffffff;
    --p360-success: #0d9f6e;
    --p360-success-soft: #ecfbf5;
    --p360-danger: #d92d20;
    --p360-danger-soft: #fff1ef;
    --p360-warning: #a56712;
    --p360-warning-soft: #fff8e8;
    --p360-shadow-sm: 0 8px 24px rgba(12, 31, 61, .06);
    --p360-shadow-md: 0 16px 42px rgba(12, 31, 61, .09);
    --p360-shadow-lg: 0 28px 72px rgba(12, 31, 61, .13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--p360-text);
    background:
        radial-gradient(circle at 18% 8%, rgba(21, 87, 255, .07), transparent 26rem),
        radial-gradient(circle at 92% 4%, rgba(21, 87, 255, .10), transparent 24rem),
        linear-gradient(180deg, #f8fbff 0%, #f3f7fc 44%, #f6f9fd 100%);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.p360-public-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(220, 229, 241, .82);
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px) saturate(145%);
    box-shadow: 0 6px 18px rgba(12, 31, 61, .025);
}

.p360-public-header__inner {
    width: min(1180px, calc(100% - 34px));
    min-height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.p360-public-header__brand {
    display: inline-flex;
    align-items: center;
}

.p360-public-header__brand img,
.p360-public-footer img {
    width: 154px;
    max-height: 40px;
    object-fit: contain;
    object-position: left center;
}

.p360-public-header__nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 12px;
    font-weight: 800;
}

.p360-public-header__nav > a:not(.p360-public-header__secondary) {
    position: relative;
    color: #44546a;
    transition: color .18s ease;
}

.p360-public-header__nav > a:not(.p360-public-header__secondary)::after {
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--p360-blue);
    content: "";
    transform: translateX(-50%);
    transition: width .18s ease;
}

.p360-public-header__nav > a:not(.p360-public-header__secondary):hover {
    color: var(--p360-blue);
}

.p360-public-header__nav > a:not(.p360-public-header__secondary):hover::after {
    width: 100%;
}

.p360-public-header__secondary {
    padding: 9px 14px;
    color: var(--p360-blue);
    border: 1px solid rgba(21, 87, 255, .20);
    border-radius: 11px;
    background: linear-gradient(180deg, #ffffff, #f6f9ff);
    box-shadow: 0 5px 14px rgba(21, 87, 255, .07);
    transition: .18s ease;
}

.p360-public-header__secondary:hover {
    transform: translateY(-1px);
    border-color: rgba(21, 87, 255, .34);
}

.p360-csd {
    width: min(1180px, calc(100% - 34px));
    margin: 0 auto;
    padding: 24px 0 0;
}

.p360-csd__hero {
    min-height: 224px;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .60fr);
    align-items: center;
    gap: 34px;
    padding: 30px 0 28px;
}

.p360-csd__eyebrow,
.p360-csd__steps header > span,
.p360-csd__faq header > span,
.p360-csd__accountants > div > span,
.p360-csd__validator-card > header > span,
.p360-csd__result-head > div > span {
    color: var(--p360-blue);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.p360-csd__eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
}

.p360-csd__eyebrow > span {
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--p360-blue), var(--p360-blue-2));
    box-shadow: 0 0 0 3px rgba(21, 87, 255, .055);
}

.p360-csd__hero h1 {
    max-width: 760px;
    margin: 10px 0 12px;
    color: var(--p360-navy);
    font-size: clamp(34px, 4.45vw, 58px);
    line-height: .98;
    letter-spacing: -.047em;
}

.p360-csd__hero h1 strong {
    color: var(--p360-blue);
    font-weight: 950;
}

.p360-csd__hero-copy > p {
    max-width: 700px;
    margin: 14px 0;
    color: var(--p360-muted);
    font-size: 15px;
    line-height: 1.62;
}

.p360-csd__hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 8px;
    margin-top: 16px;
}

.p360-csd__hero-proof span {
    padding: 7px 10px;
    color: #3f5067;
    border: 1px solid rgba(215, 225, 238, .92);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 4px 11px rgba(12, 31, 61, .025);
    font-size: 10px;
    font-weight: 850;
}

.p360-csd__security-card {
    position: relative;
    overflow: hidden;
    padding: 21px;
    border: 1px solid rgba(21, 87, 255, .13);
    border-radius: 21px;
    background:
        radial-gradient(circle at 100% 0, rgba(21, 87, 255, .12), transparent 13rem),
        rgba(255, 255, 255, .86);
    box-shadow: var(--p360-shadow-md);
    backdrop-filter: blur(18px);
}

.p360-csd__security-card::after {
    position: absolute;
    right: -52px;
    bottom: -52px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: rgba(21, 87, 255, .045);
    content: "";
}

.p360-csd__security-icon {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    margin-bottom: 13px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(21, 87, 255, .10);
    border-radius: 13px;
    background: linear-gradient(145deg, #f3f7ff, #e8efff);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
    font-size: 18px;
}

.p360-csd__security-card small {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--p360-blue);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.p360-csd__security-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 4px;
    color: var(--p360-navy);
    font-size: 16px;
    line-height: 1.2;
}

.p360-csd__security-card p {
    position: relative;
    z-index: 1;
    margin: 11px 0 0;
    color: var(--p360-muted);
    font-size: 11px;
    line-height: 1.58;
}

.p360-csd__workspace {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
    gap: 18px;
    align-items: stretch;
    scroll-margin-top: 86px;
}

.p360-csd__workspace::before {
    position: absolute;
    inset: -12px;
    z-index: -1;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.72), rgba(240,246,255,.42));
    content: "";
}

.p360-csd__validator-card,
.p360-csd__result,
.p360-csd__empty-result {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 227, 240, .95);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--p360-shadow-lg);
}

.p360-csd__validator-card::before,
.p360-csd__empty-result::before,
.p360-csd__result::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--p360-blue), #64a0ff, transparent 78%);
    content: "";
}

.p360-csd__validator-card {
    padding: 24px;
}

.p360-csd__validator-card > header {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--p360-line-soft);
}

.p360-csd__validator-card > header h2,
.p360-csd__result h2,
.p360-csd__empty-result h2,
.p360-csd__steps h2,
.p360-csd__accountants h2,
.p360-csd__faq h2 {
    color: var(--p360-navy);
    letter-spacing: -.028em;
}

.p360-csd__validator-card > header h2 {
    margin: 5px 0 5px;
    font-size: 22px;
    line-height: 1.18;
}

.p360-csd__validator-card > header p {
    max-width: 640px;
    margin: 0;
    color: var(--p360-muted);
    font-size: 12px;
    line-height: 1.55;
}

.p360-csd__form {
    display: grid;
    gap: 14px;
    padding-top: 16px;
}

.p360-csd__field {
    display: grid;
    gap: 6px;
}

.p360-csd__field > span {
    color: #2b3b52;
    font-size: 11px;
    font-weight: 900;
}

.p360-csd__field > span small {
    color: var(--p360-muted-2);
    font-weight: 750;
}

.p360-csd__field > small,
.p360-csd__privacy {
    color: #8491a2;
    font-size: 10px;
    line-height: 1.45;
}

.p360-csd__field input {
    width: 100%;
    min-height: 43px;
    padding: 0 13px;
    color: var(--p360-navy);
    border: 1px solid #ccd8e6;
    border-radius: 11px;
    outline: none;
    background: #fbfdff;
    box-shadow: inset 0 1px 2px rgba(12, 31, 61, .018);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.p360-csd__field input::placeholder {
    color: #a2aec0;
}

.p360-csd__field input:hover {
    border-color: #b8c6d7;
    background: #ffffff;
}

.p360-csd__field input:focus {
    border-color: var(--p360-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(21, 87, 255, .085);
}

.p360-csd__file-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.p360-csd__file {
    position: relative;
    min-height: 124px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    overflow: hidden;
    border: 1px dashed #b6c5d8;
    border-radius: 15px;
    cursor: pointer;
    background:
        linear-gradient(145deg, #fbfdff, #f4f8fd);
    transition: .18s ease;
}

.p360-csd__file::after {
    position: absolute;
    right: -24px;
    top: -24px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(21, 87, 255, .045);
    content: "";
}

.p360-csd__file:hover {
    border-color: rgba(21, 87, 255, .7);
    background: #f4f8ff;
    box-shadow: 0 10px 24px rgba(21, 87, 255, .07);
    transform: translateY(-1px);
}

.p360-csd__file-icon {
    position: relative;
    z-index: 1;
    min-width: 42px;
    padding: 6px 8px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(21, 87, 255, .09);
    border-radius: 8px;
    color: var(--p360-blue);
    background: #eaf1ff;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .06em;
}

.p360-csd__file strong {
    position: relative;
    z-index: 1;
    color: var(--p360-navy);
    font-size: 12px;
}

.p360-csd__file small {
    position: relative;
    z-index: 1;
    color: var(--p360-muted);
    font-size: 10px;
    line-height: 1.42;
    overflow-wrap: anywhere;
}

.p360-csd__file input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.p360-csd__password {
    position: relative;
}

.p360-csd__password input {
    padding-right: 48px;
}

.p360-csd__password button {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 34px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid #e0e7f0;
    border-radius: 8px;
    cursor: pointer;
    transform: translateY(-50%);
    background: #f2f5f9;
    transition: .16s ease;
}

.p360-csd__password button:hover {
    background: #e9eef6;
}

.p360-csd__submit {
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 11px;
    cursor: pointer;
    color: #fff;
    background:
        linear-gradient(135deg, #1c61ff 0%, #154fe0 50%, #0f3db5 100%);
    box-shadow:
        0 12px 24px rgba(21, 87, 255, .22),
        inset 0 1px 0 rgba(255,255,255,.18);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: -.01em;
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.p360-csd__submit:hover {
    filter: brightness(1.035);
    box-shadow:
        0 15px 28px rgba(21, 87, 255, .28),
        inset 0 1px 0 rgba(255,255,255,.20);
    transform: translateY(-1px);
}

.p360-csd__submit:active {
    transform: translateY(0);
}

.p360-csd__privacy {
    margin: -2px 0 0;
    text-align: center;
}

.p360-csd__message {
    margin: 0 0 14px;
    padding: 12px 13px;
    border-radius: 11px;
    font-size: 11px;
    line-height: 1.45;
}

.p360-csd__message--danger {
    color: #98261d;
    border: 1px solid #ffd0ca;
    background: var(--p360-danger-soft);
}

.p360-csd__empty-result {
    padding: 24px;
    background:
        radial-gradient(circle at 100% 0, rgba(21, 87, 255, .07), transparent 18rem),
        rgba(255,255,255,.94);
}

.p360-csd__empty-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(21, 87, 255, .10);
    border-radius: 13px;
    color: var(--p360-blue);
    background: linear-gradient(145deg, #eff4ff, #e5edff);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
    font-size: 18px;
    font-weight: 950;
}

.p360-csd__empty-result h2 {
    margin: 12px 0 11px;
    font-size: 20px;
}

.p360-csd__empty-result ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.p360-csd__empty-result li {
    position: relative;
    margin: 7px 0;
    padding: 7px 9px 7px 31px;
    color: #4d5d73;
    border: 1px solid #edf2f7;
    border-radius: 9px;
    background: rgba(250,252,255,.75);
    font-size: 10px;
    font-weight: 700;
}

.p360-csd__empty-result li::before {
    position: absolute;
    left: 9px;
    top: 50%;
    width: 15px;
    height: 15px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    background: var(--p360-success);
    content: "✓";
    font-size: 9px;
    font-weight: 950;
    transform: translateY(-50%);
}

.p360-csd__empty-result p {
    margin: 14px 0 0;
    padding-top: 13px;
    border-top: 1px solid var(--p360-line-soft);
    color: var(--p360-muted);
    font-size: 10px;
    line-height: 1.5;
}

.p360-csd__result {
    overflow: hidden;
}

.p360-csd__result-head {
    padding: 22px;
    display: flex;
    gap: 13px;
    border-bottom: 1px solid var(--p360-line);
}

.p360-csd__result-symbol {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.20);
    font-size: 19px;
    font-weight: 950;
}

.p360-csd__result--success .p360-csd__result-symbol {
    background: linear-gradient(145deg, #16b67f, #0c9364);
}

.p360-csd__result--danger .p360-csd__result-symbol {
    background: linear-gradient(145deg, #ed493f, #c52a20);
}

.p360-csd__result--warning .p360-csd__result-symbol {
    background: linear-gradient(145deg, #d7a03c, #a86a12);
}

.p360-csd__result-head h2 {
    margin: 4px 0 3px;
    font-size: 19px;
}

.p360-csd__result-head p {
    margin: 0;
    color: var(--p360-muted);
    font-size: 10px;
    line-height: 1.48;
}

.p360-csd__checks {
    padding: 16px 21px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.p360-csd__checks article {
    min-height: 54px;
    padding: 9px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e8eef5;
    border-radius: 10px;
    background: #fbfdff;
}

.p360-csd__check-dot {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    font-weight: 950;
}

.p360-csd__check-dot.is-ok {
    background: var(--p360-success);
}

.p360-csd__check-dot.is-error {
    background: var(--p360-danger);
}

.p360-csd__checks strong,
.p360-csd__checks small {
    display: block;
}

.p360-csd__checks strong {
    color: #26364c;
    font-size: 10px;
}

.p360-csd__checks small {
    margin-top: 2px;
    color: var(--p360-muted);
    font-size: 9px;
}

.p360-csd__warnings {
    margin: 0 21px 16px;
    padding: 12px 13px;
    border: 1px solid #f1d9a7;
    border-radius: 10px;
    color: #795316;
    background: var(--p360-warning-soft);
    font-size: 10px;
    line-height: 1.45;
}

.p360-csd__warnings strong {
    display: block;
    margin-bottom: 5px;
    color: #67440e;
    font-size: 10px;
}

.p360-csd__warnings p {
    margin: 3px 0;
}

.p360-csd__details {
    margin: 0 21px 18px;
    border: 1px solid #e4ebf4;
    border-radius: 11px;
    overflow: hidden;
}

.p360-csd__details > header {
    padding: 9px 11px;
    color: var(--p360-navy);
    background: #f5f8fc;
    font-size: 9px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.p360-csd__details dl {
    margin: 0;
}

.p360-csd__details dl > div {
    padding: 8px 11px;
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    gap: 10px;
    border-top: 1px solid #edf2f7;
}

.p360-csd__details dt {
    color: #7b899c;
    font-size: 9px;
    font-weight: 800;
}

.p360-csd__details dd {
    margin: 0;
    color: #26364c;
    font-size: 9px;
    font-weight: 850;
    overflow-wrap: anywhere;
}

.p360-csd__conversion {
    padding: 18px 21px;
    display: grid;
    gap: 12px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(80, 135, 255, .30), transparent 14rem),
        linear-gradient(140deg, #0d203e, #153f94);
}

.p360-csd__conversion > div > span {
    color: #bcd0ff;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .12em;
}

.p360-csd__conversion h3 {
    margin: 5px 0;
    font-size: 16px;
    line-height: 1.22;
}

.p360-csd__conversion p {
    margin: 0;
    color: #d7e1f2;
    font-size: 9px;
    line-height: 1.48;
}

.p360-csd__conversion-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.p360-csd__button {
    min-height: 37px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 950;
    transition: .16s ease;
}

.p360-csd__button:hover {
    transform: translateY(-1px);
}

.p360-csd__button--primary {
    color: #fff;
    background: var(--p360-blue);
}

.p360-csd__button--secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
}

.p360-csd__button--dark {
    color: #fff;
    background: var(--p360-navy);
}

.p360-csd__steps,
.p360-csd__faq {
    padding: 54px 0 10px;
    scroll-margin-top: 72px;
}

.p360-csd__steps header,
.p360-csd__faq header {
    text-align: center;
}

.p360-csd__steps h2,
.p360-csd__faq h2 {
    margin: 6px 0 20px;
    font-size: 25px;
}

.p360-csd__steps > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.p360-csd__steps article {
    position: relative;
    overflow: hidden;
    padding: 19px;
    border: 1px solid var(--p360-line);
    border-radius: 15px;
    background: rgba(255,255,255,.88);
    box-shadow: var(--p360-shadow-sm);
}

.p360-csd__steps article::after {
    position: absolute;
    right: -25px;
    bottom: -25px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(21, 87, 255, .035);
    content: "";
}

.p360-csd__steps article > span {
    color: var(--p360-blue);
    font-size: 9px;
    font-weight: 950;
}

.p360-csd__steps h3 {
    margin: 8px 0 5px;
    color: var(--p360-navy);
    font-size: 15px;
}

.p360-csd__steps p {
    margin: 0;
    color: var(--p360-muted);
    font-size: 10px;
    line-height: 1.55;
}

.p360-csd__accountants {
    position: relative;
    overflow: hidden;
    margin-top: 48px;
    padding: 27px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 19px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 18%, rgba(28, 97, 255, .95), transparent 27rem),
        radial-gradient(circle at 100% 0, rgba(76, 130, 255, .24), transparent 18rem),
        #0c1f3d;
    box-shadow: 0 20px 50px rgba(12, 31, 61, .14);
}

.p360-csd__accountants::after {
    position: absolute;
    right: 12%;
    bottom: -60px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 50%;
    content: "";
}

.p360-csd__accountants h2 {
    margin: 5px 0;
    color: #fff;
    font-size: 22px;
}

.p360-csd__accountants p {
    max-width: 760px;
    margin: 0;
    color: #d4def0;
    font-size: 10px;
    line-height: 1.55;
}

.p360-csd__accountants .p360-csd__button--dark {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    color: var(--p360-navy);
    background: #fff;
    box-shadow: 0 7px 18px rgba(0,0,0,.12);
}

.p360-csd__faq {
    padding-bottom: 46px;
}

.p360-csd__faq > div {
    width: min(780px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 8px;
}

.p360-csd__faq details {
    padding: 0 15px;
    border: 1px solid var(--p360-line);
    border-radius: 11px;
    background: rgba(255,255,255,.90);
    box-shadow: 0 5px 16px rgba(12,31,61,.025);
}

.p360-csd__faq summary {
    padding: 13px 0;
    cursor: pointer;
    color: #2a3a50;
    font-size: 11px;
    font-weight: 900;
}

.p360-csd__faq details p {
    margin: 0 0 13px;
    color: var(--p360-muted);
    font-size: 10px;
    line-height: 1.58;
}

.p360-public-footer {
    margin-top: 14px;
    padding: 27px max(24px, calc((100vw - 1180px) / 2));
    display: grid;
    grid-template-columns: 1.5fr .7fr .7fr;
    gap: 26px;
    color: #6c7c91;
    border-top: 1px solid var(--p360-line);
    background: rgba(255,255,255,.94);
    font-size: 10px;
}

.p360-public-footer > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.p360-public-footer strong {
    color: var(--p360-navy);
    font-size: 10px;
}

.p360-public-footer p {
    margin: 1px 0 0;
}

@media (max-width: 900px) {
    .p360-public-header__nav > a:not(.p360-public-header__secondary) {
        display: none;
    }

    .p360-csd__hero,
    .p360-csd__workspace {
        grid-template-columns: 1fr;
    }

    .p360-csd__hero {
        gap: 16px;
    }

    .p360-csd__security-card {
        max-width: none;
    }

    .p360-csd__steps > div {
        grid-template-columns: 1fr;
    }

    .p360-csd__accountants {
        align-items: flex-start;
        flex-direction: column;
    }

    .p360-csd__checks {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .p360-public-header__inner,
    .p360-csd {
        width: min(100% - 22px, 1180px);
    }

    .p360-public-header__inner {
        min-height: 58px;
    }

    .p360-public-header__brand img {
        width: 138px;
    }

    .p360-csd {
        padding-top: 12px;
    }

    .p360-csd__hero {
        min-height: 0;
        padding: 20px 0 18px;
    }

    .p360-csd__hero h1 {
        font-size: 36px;
    }

    .p360-csd__hero-copy > p {
        font-size: 14px;
    }

    .p360-csd__file-grid {
        grid-template-columns: 1fr;
    }

    .p360-csd__validator-card,
    .p360-csd__empty-result {
        padding: 18px;
    }

    .p360-csd__result-head {
        padding: 18px;
    }

    .p360-csd__checks {
        padding: 14px 18px;
    }

    .p360-csd__warnings,
    .p360-csd__details {
        margin-left: 18px;
        margin-right: 18px;
    }

    .p360-csd__details dl > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .p360-csd__accountants {
        padding: 23px 20px;
    }

    .p360-public-footer {
        grid-template-columns: 1fr;
    }
}

/* P360_CSD_COMPACT_MARKETING_V3 */

.p360-csd {
    width: min(1080px, calc(100% - 28px));
    padding-top: 14px;
}

.p360-public-header__inner {
    width: min(1080px, calc(100% - 28px));
    min-height: 58px;
}

.p360-public-header__brand img,
.p360-public-footer img {
    width: 142px;
}

.p360-csd__hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1.65fr) minmax(235px, .55fr);
    gap: 24px;
    padding: 18px 0 20px;
}

.p360-csd__hero h1 {
    max-width: 700px;
    margin: 7px 0 9px;
    font-size: clamp(30px, 4vw, 47px);
    line-height: .99;
}

.p360-csd__hero-copy > p {
    max-width: 650px;
    margin: 9px 0;
    font-size: 12px;
    line-height: 1.5;
}

.p360-csd__hero-proof {
    gap: 5px 6px;
    margin-top: 10px;
}

.p360-csd__hero-proof span {
    padding: 5px 8px;
    font-size: 8px;
}

.p360-csd__security-card {
    padding: 16px;
    border-radius: 16px;
}

.p360-csd__security-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 9px;
    border-radius: 10px;
    font-size: 14px;
}

.p360-csd__security-card strong {
    font-size: 13px;
}

.p360-csd__security-card p {
    margin-top: 8px;
    font-size: 9px;
    line-height: 1.45;
}

.p360-csd__workspace {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: 14px;
}

.p360-csd__validator-card,
.p360-csd__result,
.p360-csd__empty-result {
    border-radius: 17px;
    box-shadow: 0 16px 36px rgba(12, 31, 61, .08);
}

.p360-csd__validator-card {
    padding: 18px;
}

.p360-csd__validator-card > header {
    padding-bottom: 10px;
}

.p360-csd__validator-card > header h2 {
    margin: 3px 0 3px;
    font-size: 17px;
}

.p360-csd__validator-card > header p {
    font-size: 9px;
}

.p360-csd__form {
    gap: 10px;
    padding-top: 11px;
}

.p360-csd__field {
    gap: 4px;
}

.p360-csd__field > span {
    font-size: 9px;
}

.p360-csd__field > small,
.p360-csd__privacy {
    font-size: 8px;
}

.p360-csd__field input {
    min-height: 36px;
    padding: 0 10px;
    border-radius: 9px;
    font-size: 10px;
}

.p360-csd__file-grid {
    gap: 8px;
}

.p360-csd__file {
    min-height: 92px;
    padding: 11px;
    gap: 3px;
    border-radius: 12px;
}

.p360-csd__file-icon {
    min-width: 35px;
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 7px;
}

.p360-csd__file strong {
    font-size: 9px;
}

.p360-csd__file small {
    font-size: 8px;
}

.p360-csd__password button {
    width: 29px;
    height: 27px;
    right: 5px;
    border-radius: 7px;
    font-size: 11px;
}

.p360-csd__submit {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 9px;
    font-size: 9px;
}

.p360-csd__empty-result {
    padding: 18px;
}

.p360-csd__empty-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 14px;
}

.p360-csd__empty-result h2 {
    margin: 9px 0 8px;
    font-size: 16px;
}

.p360-csd__empty-result li {
    margin: 5px 0;
    padding: 5px 7px 5px 26px;
    border-radius: 7px;
    font-size: 8px;
}

.p360-csd__empty-result li::before {
    left: 7px;
    width: 13px;
    height: 13px;
    font-size: 7px;
}

.p360-csd__empty-result p {
    margin-top: 10px;
    padding-top: 9px;
    font-size: 8px;
}

.p360-csd__marketing {
    margin-top: 26px;
    padding: 20px;
    border: 1px solid rgba(218, 228, 240, .95);
    border-radius: 16px;
    background:
        radial-gradient(circle at 100% 0, rgba(21,87,255,.08), transparent 18rem),
        rgba(255,255,255,.90);
    box-shadow: 0 12px 30px rgba(12,31,61,.05);
}

.p360-csd__marketing-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 13px;
}

.p360-csd__marketing-head > div > span {
    color: var(--p360-blue);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.p360-csd__marketing-head h2 {
    margin: 4px 0 0;
    color: var(--p360-navy);
    font-size: 19px;
    letter-spacing: -.025em;
}

.p360-csd__marketing-head > p {
    max-width: 340px;
    margin: 0;
    color: var(--p360-muted);
    font-size: 8px;
    line-height: 1.45;
    text-align: right;
}

.p360-csd__services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.p360-csd__services article {
    min-width: 0;
    padding: 11px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border: 1px solid #e7edf5;
    border-radius: 10px;
    background: #fbfdff;
}

.p360-csd__service-icon {
    flex: 0 0 32px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--p360-blue);
    border: 1px solid rgba(21,87,255,.10);
    border-radius: 7px;
    background: #edf3ff;
    font-size: 7px;
    font-weight: 950;
}

.p360-csd__services strong {
    display: block;
    color: var(--p360-navy);
    font-size: 9px;
}

.p360-csd__services p {
    margin: 2px 0 0;
    color: var(--p360-muted);
    font-size: 7px;
    line-height: 1.4;
}

.p360-csd__marketing-cta {
    margin-top: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(120deg, #0d203e, #164ba8);
}

.p360-csd__marketing-cta > div:first-child strong,
.p360-csd__marketing-cta > div:first-child span {
    display: block;
}

.p360-csd__marketing-cta > div:first-child strong {
    font-size: 9px;
}

.p360-csd__marketing-cta > div:first-child span {
    margin-top: 2px;
    color: #d3e0f5;
    font-size: 7px;
}

.p360-csd__marketing-cta > div:last-child {
    flex: 0 0 auto;
    display: flex;
    gap: 6px;
}

.p360-csd__button--light {
    color: var(--p360-navy);
    background: #fff;
}

.p360-csd__steps,
.p360-csd__faq {
    padding-top: 28px;
}

.p360-csd__steps h2,
.p360-csd__faq h2 {
    margin-bottom: 12px;
    font-size: 18px;
}

.p360-csd__steps > div {
    gap: 8px;
}

.p360-csd__steps article {
    padding: 12px;
    border-radius: 10px;
}

.p360-csd__steps h3 {
    margin: 4px 0 2px;
    font-size: 11px;
}

.p360-csd__steps p {
    font-size: 7px;
}

.p360-csd__accountants {
    margin-top: 24px;
    padding: 17px 20px;
    border-radius: 13px;
}

.p360-csd__accountants h2 {
    font-size: 15px;
}

.p360-csd__accountants p {
    font-size: 7px;
}

.p360-csd__faq {
    padding-bottom: 26px;
}

@media (max-width: 1100px) {
    .p360-csd,
    .p360-public-header__inner {
        width: min(960px, calc(100% - 24px));
    }

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

@media (max-width: 820px) {
    .p360-csd__hero,
    .p360-csd__workspace {
        grid-template-columns: 1fr;
    }

    .p360-csd__marketing-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .p360-csd__marketing-head > p {
        max-width: none;
        text-align: left;
    }

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

    .p360-csd__marketing-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .p360-csd,
    .p360-public-header__inner {
        width: min(100% - 16px, 1080px);
    }

    .p360-csd__hero h1 {
        font-size: 29px;
    }

    .p360-csd__file-grid,
    .p360-csd__services {
        grid-template-columns: 1fr;
    }

    .p360-csd__validator-card,
    .p360-csd__empty-result,
    .p360-csd__marketing {
        padding: 14px;
    }

    .p360-csd__marketing-cta > div:last-child {
        width: 100%;
        flex-wrap: wrap;
    }

    .p360-csd__marketing-cta .p360-csd__button {
        flex: 1 1 auto;
    }
}

@media (max-width: 380px) {
    .p360-csd__hero h1 {
        font-size: 26px;
    }

    .p360-csd__marketing-cta > div:last-child {
        flex-direction: column;
    }

    .p360-csd__marketing-cta .p360-csd__button {
        width: 100%;
    }
}

/* P360_CSD_FIEL_DUAL_VALIDATORS_V4 */

.p360-csd__dual {
    display: grid;
    gap: 26px;
    scroll-margin-top: 72px;
}

.p360-csd__validator-tabs {
    position: sticky;
    top: 66px;
    z-index: 20;
    padding: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    border: 1px solid rgba(214, 225, 239, .96);
    border-radius: 13px;
    background: rgba(255, 255, 255, .91);
    box-shadow: 0 9px 24px rgba(12, 31, 61, .055);
    backdrop-filter: blur(14px);
}

.p360-csd__validator-tabs a {
    min-width: 0;
    min-height: 42px;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5a6a80;
    border-radius: 9px;
    font-size: 8px;
    font-weight: 850;
    transition: .16s ease;
}

.p360-csd__validator-tabs a span {
    min-width: 38px;
    padding: 5px 7px;
    display: inline-grid;
    place-items: center;
    color: var(--p360-blue);
    border-radius: 7px;
    background: #edf3ff;
    font-size: 7px;
    font-weight: 950;
    letter-spacing: .06em;
}

.p360-csd__validator-tabs a:hover,
.p360-csd__validator-tabs a.is-active {
    color: var(--p360-navy);
    background: #f5f8fd;
}

.p360-csd__validator-tabs a.is-active {
    box-shadow: inset 0 0 0 1px rgba(21, 87, 255, .11);
}

.p360-csd__validator-section {
    display: grid;
    gap: 10px;
    scroll-margin-top: 124px;
}

.p360-csd__validator-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding: 0 2px;
}

.p360-csd__validator-section-head > div > span {
    color: var(--p360-blue);
    font-size: 7px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.p360-csd__validator-section-head h2 {
    margin: 3px 0 0;
    color: var(--p360-navy);
    font-size: 17px;
    letter-spacing: -.025em;
}

.p360-csd__validator-section-head > p {
    max-width: 360px;
    margin: 0;
    color: var(--p360-muted);
    font-size: 7px;
    line-height: 1.45;
    text-align: right;
}

.p360-csd__validator-section + .p360-csd__validator-section {
    padding-top: 24px;
    border-top: 1px solid rgba(217, 226, 238, .85);
}

.p360-csd__submit--fiel {
    background:
        linear-gradient(
            135deg,
            #163e86 0%,
            #112f67 52%,
            #0c234f 100%
        );
    box-shadow:
        0 12px 24px rgba(12, 35, 79, .18),
        inset 0 1px 0 rgba(255,255,255,.16);
}

.p360-csd__empty-result--fiel::before {
    background:
        linear-gradient(
            90deg,
            #173e84,
            #5c7fbd,
            transparent 78%
        );
}

.p360-csd__result-summary {
    padding: 11px 15px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.p360-csd__result-summary > div {
    min-width: 0;
    padding: 8px;
    border: 1px solid #e8eef5;
    border-radius: 9px;
    background: #fbfdff;
    text-align: center;
}

.p360-csd__result-summary strong,
.p360-csd__result-summary span {
    display: block;
}

.p360-csd__result-summary strong {
    color: var(--p360-navy);
    font-size: 13px;
    line-height: 1;
}

.p360-csd__result-summary span {
    margin-top: 3px;
    color: var(--p360-muted);
    font-size: 6px;
    font-weight: 800;
}

.p360-csd__result-summary .is-success {
    border-color: rgba(13, 159, 110, .19);
    background: rgba(236, 251, 245, .74);
}

.p360-csd__result-summary .is-warning {
    border-color: rgba(165, 103, 18, .18);
    background: rgba(255, 248, 232, .78);
}

.p360-csd__result-summary .is-danger {
    border-color: rgba(217, 45, 32, .16);
    background: rgba(255, 241, 239, .78);
}

.p360-csd__result-summary .is-info {
    border-color: rgba(21, 87, 255, .12);
    background: rgba(237, 243, 255, .72);
}

.p360-csd__checks article.is-warning {
    border-color: rgba(165, 103, 18, .17);
    background: rgba(255, 248, 232, .57);
}

.p360-csd__checks article.is-danger {
    border-color: rgba(217, 45, 32, .15);
    background: rgba(255, 241, 239, .55);
}

.p360-csd__checks article.is-info {
    border-color: rgba(21, 87, 255, .11);
    background: rgba(244, 248, 255, .72);
}

.p360-csd__check-dot.is-warning {
    background: var(--p360-warning);
}

.p360-csd__check-dot.is-danger {
    background: var(--p360-danger);
}

.p360-csd__check-dot.is-info {
    background: var(--p360-blue);
}

.p360-csd__empty-icon {
    min-width: 34px;
    width: auto;
    padding: 0 7px;
    font-size: 7px;
    letter-spacing: .04em;
}

@media (max-width: 820px) {
    .p360-csd__validator-tabs {
        top: 59px;
    }

    .p360-csd__validator-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .p360-csd__validator-section-head > p {
        max-width: none;
        text-align: left;
    }

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

@media (max-width: 560px) {
    .p360-csd__dual {
        gap: 20px;
    }

    .p360-csd__validator-tabs {
        grid-template-columns: 1fr;
        position: static;
    }

    .p360-csd__validator-tabs a {
        min-height: 38px;
    }

    .p360-csd__validator-section + .p360-csd__validator-section {
        padding-top: 18px;
    }

    .p360-csd__validator-section-head h2 {
        font-size: 15px;
    }
}

/* P360_CSD_FIEL_PROFESSIONAL_DIAGNOSTIC_V5 */

.p360-csd__empty-result--neutral {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    justify-content: center;
}

.p360-csd__empty-result--neutral::before {
    background: linear-gradient(
        90deg,
        #b7c4d6,
        #d7e0eb,
        transparent 78%
    );
}

.p360-csd__empty-result--neutral .p360-csd__empty-icon {
    color: #6f8098;
    border-color: #dde5ef;
    background: #f4f7fb;
}

.p360-csd__empty-lead {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    max-width: 360px;
    color: var(--p360-muted) !important;
    font-size: 8px !important;
    line-height: 1.55 !important;
}

.p360-csd__empty-waiting {
    margin-top: 14px;
    padding: 9px 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    color: #66778d;
    border: 1px dashed #ccd7e5;
    border-radius: 9px;
    background: #f8fafc;
    font-size: 8px;
    font-weight: 850;
}

.p360-csd__empty-waiting span {
    color: #94a3b8;
    font-size: 12px;
    line-height: 1;
}

.p360-csd__diagnostic-board {
    margin: 11px 15px 0;
    display: grid;
    grid-template-columns: 1.55fr repeat(3, 1fr);
    gap: 6px;
}

.p360-csd__diagnostic-board > div {
    min-width: 0;
    padding: 10px;
    border: 1px solid #e6edf5;
    border-radius: 9px;
    background: #fbfdff;
}

.p360-csd__diagnostic-board span,
.p360-csd__diagnostic-board strong {
    display: block;
}

.p360-csd__diagnostic-board span {
    color: #8a98aa;
    font-size: 6px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.p360-csd__diagnostic-board strong {
    margin-top: 4px;
    color: var(--p360-navy);
    font-size: 9px;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.p360-csd__diagnostic-board .p360-csd__diagnostic-main {
    border-color: rgba(21, 87, 255, .15);
    background: linear-gradient(145deg, #f7faff, #edf3ff);
}

.p360-csd__diagnostic-board .p360-csd__diagnostic-main strong {
    color: var(--p360-blue);
}

.p360-csd__diagnostic-board .is-risk-low {
    border-color: rgba(13, 159, 110, .18);
    background: var(--p360-success-soft);
}

.p360-csd__diagnostic-board .is-risk-low strong {
    color: var(--p360-success);
}

.p360-csd__diagnostic-board .is-risk-medium {
    border-color: rgba(165, 103, 18, .18);
    background: var(--p360-warning-soft);
}

.p360-csd__diagnostic-board .is-risk-medium strong {
    color: var(--p360-warning);
}

.p360-csd__diagnostic-board .is-risk-high {
    border-color: rgba(217, 45, 32, .17);
    background: var(--p360-danger-soft);
}

.p360-csd__diagnostic-board .is-risk-high strong {
    color: var(--p360-danger);
}

.p360-csd__scope-note {
    margin: 0 15px 12px;
    padding: 9px 10px;
    border: 1px solid #dde6f1;
    border-radius: 9px;
    background: #f7f9fc;
}

.p360-csd__scope-note strong {
    display: block;
    color: var(--p360-navy);
    font-size: 8px;
}

.p360-csd__scope-note p {
    margin: 3px 0 0;
    color: var(--p360-muted);
    font-size: 7px;
    line-height: 1.5;
}

@media (max-width: 820px) {
    .p360-csd__diagnostic-board {
        grid-template-columns: repeat(2, 1fr);
    }

    .p360-csd__diagnostic-board .p360-csd__diagnostic-main {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .p360-csd__empty-result--neutral {
        min-height: 190px;
    }

    .p360-csd__diagnostic-board {
        margin-left: 12px;
        margin-right: 12px;
    }

    .p360-csd__scope-note {
        margin-left: 12px;
        margin-right: 12px;
    }
}

/* P360_CSD_RESULT_UI_V6B */

.p360-csd__result {
    align-self: start;
}

.p360-csd__result-head--executive {
    padding: 15px;
    align-items: center;
    gap: 10px;
}

.p360-csd__result-head-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.p360-csd__result-head--executive h2 {
    margin: 2px 0 2px;
    font-size: 15px;
}

.p360-csd__result-head--executive p {
    font-size: 8px;
}

.p360-csd__result-verdict {
    flex: 0 0 auto;
    max-width: 145px;
    padding: 8px 10px;
    border: 1px solid #e4ebf4;
    border-radius: 9px;
    background: #f7f9fc;
    text-align: right;
}

.p360-csd__result-verdict span,
.p360-csd__result-verdict strong {
    display: block;
}

.p360-csd__result-verdict span {
    color: #8a98aa;
    font-size: 6px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.p360-csd__result-verdict strong {
    margin-top: 3px;
    color: var(--p360-navy);
    font-size: 8px;
    line-height: 1.15;
}

.p360-csd__executive-grid {
    padding: 10px 12px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.p360-csd__executive-grid article {
    min-width: 0;
    padding: 8px;
    border: 1px solid #e8eef5;
    border-radius: 8px;
    background: #fbfdff;
}

.p360-csd__executive-grid span,
.p360-csd__executive-grid strong {
    display: block;
}

.p360-csd__executive-grid span {
    color: #8b99ab;
    font-size: 6px;
    font-weight: 900;
    text-transform: uppercase;
}

.p360-csd__executive-grid strong {
    margin-top: 3px;
    color: var(--p360-navy);
    font-size: 9px;
}

.p360-csd__executive-grid .is-risk-low {
    border-color: rgba(13,159,110,.17);
    background: var(--p360-success-soft);
}

.p360-csd__executive-grid .is-risk-medium {
    border-color: rgba(165,103,18,.17);
    background: var(--p360-warning-soft);
}

.p360-csd__executive-grid .is-risk-high {
    border-color: rgba(217,45,32,.16);
    background: var(--p360-danger-soft);
}

.p360-csd__result-summary--compact {
    padding: 7px 12px 0;
}

.p360-csd__result-summary--compact > div {
    padding: 6px;
}

.p360-csd__result-summary--compact strong {
    font-size: 10px;
}

.p360-csd__priority {
    margin: 10px 12px 0;
    border: 1px solid #e4ebf4;
    border-radius: 10px;
    overflow: hidden;
}

.p360-csd__priority > header {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #edf2f7;
    background: #f7f9fc;
}

.p360-csd__priority > header span {
    color: var(--p360-blue);
    font-size: 6px;
    font-weight: 950;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.p360-csd__priority > header strong {
    color: var(--p360-navy);
    font-size: 8px;
}

.p360-csd__priority > div {
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.p360-csd__priority article {
    min-width: 0;
    padding: 7px 8px;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    background: #fff;
}

.p360-csd__priority article.is-danger {
    border-color: rgba(217,45,32,.15);
    background: rgba(255,241,239,.52);
}

.p360-csd__priority article.is-warning {
    border-color: rgba(165,103,18,.16);
    background: rgba(255,248,232,.55);
}

.p360-csd__priority article.is-info {
    border-color: rgba(21,87,255,.11);
    background: rgba(244,248,255,.72);
}

.p360-csd__priority strong,
.p360-csd__priority small {
    display: block;
}

.p360-csd__priority strong {
    color: #29394f;
    font-size: 8px;
}

.p360-csd__priority small {
    margin-top: 1px;
    color: var(--p360-muted);
    font-size: 7px;
    line-height: 1.35;
}

.p360-csd__priority .p360-csd__check-dot {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
    font-size: 8px;
}

.p360-csd__result-accordions {
    margin: 10px 12px 0;
    display: grid;
    gap: 6px;
}

.p360-csd__result-accordions details {
    border: 1px solid #e4ebf4;
    border-radius: 9px;
    overflow: hidden;
    background: #fff;
}

.p360-csd__result-accordions summary {
    padding: 9px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    list-style: none;
    background: #fafcff;
}

.p360-csd__result-accordions summary::-webkit-details-marker {
    display: none;
}

.p360-csd__result-accordions summary span,
.p360-csd__result-accordions summary strong,
.p360-csd__result-accordions summary small {
    display: block;
}

.p360-csd__result-accordions summary strong {
    color: var(--p360-navy);
    font-size: 8px;
}

.p360-csd__result-accordions summary small {
    margin-top: 2px;
    color: var(--p360-muted);
    font-size: 6px;
}

.p360-csd__result-accordions summary b {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    color: var(--p360-blue);
    border-radius: 50%;
    background: #edf3ff;
    font-size: 10px;
    transition: transform .16s ease;
}

.p360-csd__result-accordions details[open] summary b {
    transform: rotate(45deg);
}

.p360-csd__checks--accordion {
    padding: 8px;
    grid-template-columns: 1fr 1fr;
}

.p360-csd__checks--accordion article {
    min-height: 44px;
    padding: 7px 8px;
}

.p360-csd__details--accordion,
.p360-csd__warnings--accordion,
.p360-csd__scope-note--accordion {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.p360-csd__details--accordion dl > div {
    padding: 7px 10px;
    grid-template-columns: 120px minmax(0, 1fr);
}

.p360-csd__warnings--accordion {
    padding: 9px 10px;
}

.p360-csd__scope-note--accordion {
    padding: 9px 10px;
    background: #f8fafc;
}

.p360-csd__conversion--compact {
    margin-top: 10px;
    padding: 12px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
}

.p360-csd__conversion--compact h3 {
    margin: 3px 0;
    font-size: 12px;
}

.p360-csd__conversion--compact p {
    font-size: 7px;
}

.p360-csd__conversion--compact .p360-csd__button {
    min-height: 32px;
    padding: 0 10px;
    font-size: 8px;
}

@media (max-width: 820px) {
    .p360-csd__executive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .p360-csd__priority > div {
        grid-template-columns: 1fr;
    }

    .p360-csd__conversion--compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .p360-csd__result-head--executive {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .p360-csd__result-verdict {
        width: 100%;
        max-width: none;
        text-align: left;
    }

    .p360-csd__checks--accordion {
        grid-template-columns: 1fr;
    }

    .p360-csd__details--accordion dl > div {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}
