:root {
    --navy: #172033;
    --navy-2: #24334a;

    --bond-green: #4A6C33;
    --bond-green-dark: #3D592A;
    --bond-green-light: #EEF4E9;

    --gold: #c99545;
    --bond-gold: #E1BC7B;
    --bond-gold-light: #F8F0E1;

    --bg: #f5f7fa;
    --card: #ffffff;

    --line: #e1e6ed;

    --text: #172033;
    --muted: #667085;

    --success: #15803d;
    --success-bg: #eaf8ef;

    --info: #1d4ed8;
    --info-bg: #edf4ff;

    --warning: #a15c00;
    --warning-bg: #fff5df;

    --danger: #b42318;
    --danger-bg: #fff0ee;

    --shadow: 0 10px 30px rgba(23, 32, 51, .06);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* =========================================================
   TOP HEADER
   ========================================================= */

.topbar {
    min-height: 68px;
    background: var(--bond-green);
    border-bottom: 1px solid var(--bond-green-dark);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 clamp(18px, 5vw, 70px);

    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .16em;
    color: #fff;
}

.brand-sub {
    color: rgba(255, 255, 255, .75);
    font-size: 10px;
    letter-spacing: .14em;
}


/* =========================================================
   STANDARD NAVIGATION
   ========================================================= */

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 22px;

    margin-left: auto;
}

.nav > a {
    display: inline-flex;
    align-items: center;

    height: 38px;

    color: #fff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;
}

.nav > a:hover {
    color: var(--bond-gold);
}


/* =========================================================
   BOND HR / ADMIN DROPDOWN
   Isolated class names
   ========================================================= */

.bond-nav-dropdown {
    position: relative;

    display: flex;
    align-items: center;
}


/* =========================================================
   DROPDOWN BUTTON
   ========================================================= */

.bond-nav-dropdown-button {
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 2px;

    border: 0;
    outline: none;

    background: transparent;

    color: #fff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
}

.bond-nav-dropdown-button:hover {
    color: var(--bond-gold);
}

.bond-nav-arrow {
    font-size: 10px;
    line-height: 1;

    transition: transform .15s ease;
}

.bond-nav-dropdown.open .bond-nav-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN MENU
   ========================================================= */

.bond-nav-dropdown-menu {
    position: absolute;

    top: calc(100% + 10px);
    right: 0;

    width: 225px;

    padding: 7px;

    background: #fff;

    border: 1px solid var(--line);
    border-radius: 10px;

    box-shadow:
        0 15px 35px rgba(23, 32, 51, .18);

    display: flex;
    flex-direction: column;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform: translateY(-6px);

    transition:
        opacity .15s ease,
        transform .15s ease,
        visibility .15s ease;

    z-index: 2000;
}

.bond-nav-dropdown.open .bond-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform: translateY(0);
}


/* =========================================================
   DROPDOWN LINKS
   ========================================================= */

.bond-nav-dropdown-menu a {
    display: flex !important;

    width: 100%;

    align-items: center;

    min-height: 42px;

    padding: 10px 13px;

    border-radius: 7px;

    background: transparent;

    color: var(--text) !important;

    text-decoration: none !important;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
}

.bond-nav-dropdown-menu a:hover {
    background: var(--bond-green-light);

    color: var(--bond-green) !important;
}


/* =========================================================
   LOGOUT
   ========================================================= */

.logout-form {
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
}

.nav-logout {
    height: 38px;

    display: inline-flex;
    align-items: center;

    border: 0;
    background: transparent;

    color: rgba(255, 255, 255, .75);

    cursor: pointer;

    font-size: 14px;
    font-weight: 600;
}

.nav-logout:hover {
    color: #fff;
}


/* =========================================================
   PAGE
   ========================================================= */

.page-shell {
    width: min(1220px, calc(100% - 36px));
    margin: 30px auto 50px;
}

.footer {
    text-align: center;
    color: #98a2b3;
    padding: 24px;
    font-size: 12px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;

    border-radius: 18px;
    padding: 30px 32px;
    margin-bottom: 22px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    box-shadow: var(--shadow);
}

.hero h1 {
    margin: 5px 0 4px;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.2;
}

.hero p {
    margin: 0;
    color: #d0d7e2;
}

.eyebrow {
    color: var(--bond-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
}


/* =========================================================
   CARDS
   ========================================================= */

.card {
    background: var(--card);

    border: 1px solid var(--line);
    border-radius: 16px;

    padding: 24px;
    margin-bottom: 18px;

    box-shadow: var(--shadow);
}

.section-heading {
    display: flex;
    align-items: flex-start;

    gap: 14px;
    margin-bottom: 22px;
}

.section-heading.compact {
    justify-content: space-between;
    align-items: center;
}

.section-heading h2 {
    margin: 0;
    font-size: 19px;
}

.section-heading p {
    margin: 3px 0 0;
    color: var(--muted);
}

.section-number {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--bond-gold-light);
    color: #8b5e24;

    font-weight: 800;
}


/* =========================================================
   EMPLOYEE INFORMATION
   ========================================================= */

.info-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;

    margin-bottom: 22px;
}

.info-item {
    min-width: 0;

    background: #f8fafc;

    border: 1px solid #edf0f4;
    border-radius: 11px;

    padding: 13px 14px;
}

.info-item span {
    display: block;

    color: var(--muted);

    font-size: 11px;

    margin-bottom: 4px;
}

.info-item strong {
    display: block;
    overflow-wrap: anywhere;
}


/* =========================================================
   FORM
   ========================================================= */

.form-grid {
    display: grid;
    gap: 18px;
}

.form-grid.two {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.field {
    min-width: 0;
    margin-bottom: 16px;
}

.field label {
    display: block;

    margin-bottom: 7px;

    font-weight: 700;
}

.required {
    color: var(--danger);
}

input,
select,
textarea {
    width: 100%;

    border:
        1px solid #cfd6df;

    border-radius: 9px;

    padding: 11px 12px;

    color: var(--text);

    background: #fff;

    outline: none;

    transition:
        border-color .15s,
        box-shadow .15s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--bond-green);

    box-shadow:
        0 0 0 3px
        rgba(74, 108, 51, .12);
}

textarea {
    min-height: 105px;
    resize: vertical;
}

input:disabled,
select:disabled,
textarea:disabled {
    background: #f1f3f6;
    color: #596273;
    cursor: not-allowed;
}

.field-error,
.validation-summary {
    color: var(--danger);

    font-size: 12px;

    margin-top: 6px;
}

.validation-summary ul {
    margin: 0;
    padding-left: 20px;
}

.page-validation {
    background: var(--danger-bg);

    border:
        1px solid #f4c7c3;

    border-radius: 10px;

    padding: 12px 16px;

    margin-bottom: 18px;
}


/* =========================================================
   CHECKBOX GRID
   ========================================================= */

.check-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 8px;
}

.check-card {
    margin: 0;

    padding: 10px 11px;

    display: flex;

    align-items: center;

    gap: 8px;

    border:
        1px solid var(--line);

    border-radius: 9px;

    background: #fff;

    font-weight: 500;
}

.check-card:hover {
    background: #f8fafc;
}

.check-card input {
    width: auto;
    margin: 0;
}


/* =========================================================
   SATISFACTION RATING
   ========================================================= */

.rating-table {
    border:
        1px solid var(--line);

    border-radius: 12px;

    overflow: hidden;
}

.rating-header,
.rating-row {
    display: grid;

    grid-template-columns:
        minmax(280px, 1fr)
        repeat(5, 55px);

    align-items: center;
}

.rating-header {
    background: #f3f5f8;

    color: var(--muted);

    font-size: 11px;

    font-weight: 800;

    text-align: center;

    padding: 9px 10px;
}

.rating-header span:first-child {
    text-align: left;
}

.rating-row {
    border-top:
        1px solid var(--line);

    min-height: 52px;

    padding: 5px 10px;
}

.rating-question {
    padding-right: 12px;
}

.rating-choice {
    margin: 0;

    display: flex;

    justify-content: center;

    align-items: center;
}

.rating-choice input {
    width: auto;
}


/* =========================================================
   NPS
   ========================================================= */

.nps-block {
    margin-top: 24px;
}

.nps-scale {
    display: grid;

    grid-template-columns:
        repeat(11, minmax(32px, 1fr));

    gap: 5px;

    margin-top: 8px;
}

.nps-choice {
    margin: 0;

    display: grid;

    place-items: center;
}

.nps-choice input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.nps-choice span {
    width: 100%;

    text-align: center;

    border:
        1px solid var(--line);

    border-radius: 8px;

    padding: 8px 4px;

    cursor: pointer;

    background: #fff;
}

.nps-choice input:checked + span {
    background: var(--bond-green);

    border-color: var(--bond-green);

    color: #fff;

    font-weight: 700;
}

.scale-caption {
    display: flex;

    justify-content: space-between;

    color: var(--muted);

    font-size: 11px;

    margin-top: 7px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.form-actions,
.review-actions {
    display: flex;

    justify-content: flex-end;

    gap: 10px;

    align-items: center;
}

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 42px;

    padding: 10px 17px;

    border: 0;

    border-radius: 9px;

    cursor: pointer;

    text-decoration: none;

    font-weight: 700;

    white-space: nowrap;
}

.btn-primary {
    background: var(--bond-green);

    color: #fff;

    border:
        1px solid var(--bond-green-dark);
}

.btn-primary:hover {
    background: var(--bond-green-dark);
}

.btn-secondary {
    background: #e9eef5;

    color: var(--text);
}

.btn-warning {
    background: var(--warning-bg);

    color: var(--warning);
}

.btn-full {
    width: 100%;
}

.btn-small {
    min-height: 34px;

    padding: 7px 11px;

    font-size: 12px;
}

.btn-bond {
    background: var(--bond-green);

    color: #fff;

    border:
        1px solid var(--bond-green-dark);
}

.btn-bond:hover {
    background: var(--bond-green-dark);
}


/* =========================================================
   NOTES
   ========================================================= */

.readonly-note,
.completed-note {
    padding: 14px 16px;

    background: #eef2f6;

    border-radius: 10px;

    color: #4b5563;
}


/* =========================================================
   STATUS
   ========================================================= */

.status-badge {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 6px 11px;

    border-radius: 999px;

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;
}

.status-badge.draft {
    background: #eef2f7;
    color: #475467;
}

.status-badge.returned-to-employee {
    background: #fff4db;
    color: #946200;
}

.status-badge.employee-submitted {
    background: #eaf2ff;
    color: #175cd3;
}

.status-badge.hr-review {
    background: #f1eafe;
    color: #6941c6;
}

.status-badge.completed {
    background: var(--success-bg);
    color: var(--success);
}


/* =========================================================
   ALERTS
   ========================================================= */

.alert {
    padding: 13px 16px;

    border-radius: 10px;

    margin-bottom: 18px;

    font-weight: 600;
}

.alert.success {
    background: var(--success-bg);

    color: var(--success);

    border:
        1px solid #b7e5c6;
}

.alert.info {
    background: var(--info-bg);

    color: var(--info);

    border:
        1px solid #c8dcff;
}


/* =========================================================
   KPI
   ========================================================= */

.kpi-grid {
    display: grid;

    grid-template-columns:
        repeat(7, minmax(0, 1fr));

    gap: 11px;

    margin-bottom: 18px;
}

.kpi {
    background: #fff;

    border:
        1px solid var(--line);

    border-radius: 14px;

    padding: 16px;

    border-top:
        4px solid transparent;

    box-shadow: var(--shadow);
}

.kpi span {
    display: block;

    color: var(--muted);

    font-size: 11px;

    font-weight: 700;
}

.kpi strong {
    display: block;

    margin-top: 6px;

    font-size: 22px;
}

.kpi-blue {
    border-top-color: #2563eb;
}

.kpi-amber {
    border-top-color: #d97706;
}

.kpi-purple {
    border-top-color: #7c3aed;
}

.kpi-green {
    border-top-color: #16a34a;
}

.kpi-slate {
    border-top-color: #475569;
}

.kpi-teal {
    border-top-color: #0f766e;
}

.kpi-orange {
    border-top-color: #ea580c;
}


/* =========================================================
   FILTER
   ========================================================= */

.filter-bar {
    display: grid;

    grid-template-columns:
        1fr 260px auto auto;

    gap: 10px;

    align-items: end;

    margin-bottom: 20px;
}

.filter-bar label {
    display: block;

    color: var(--muted);

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 5px;
}


/* =========================================================
   TABLE
   ========================================================= */

.table-wrap {
    overflow-x: auto;
}

.data-table {
    width: 100%;

    min-width: 900px;

    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 12px 10px;

    border-bottom:
        1px solid var(--line);

    text-align: left;

    vertical-align: middle;
}

.data-table th {
    color: var(--muted);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .04em;
}

.employee-cell strong,
.employee-cell span {
    display: block;
}

.employee-cell span {
    color: var(--muted);

    font-size: 11px;
}

.score {
    font-weight: 800;
}

.empty-state {
    padding: 25px;

    text-align: center;

    color: var(--muted);
}


/* =========================================================
   REPORT
   ========================================================= */

.report-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

    align-items: start;
}

.metric-row {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 10px 0;

    border-bottom:
        1px solid #edf0f3;
}

.metric-row span {
    color: #4b5563;
}

.chip-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.chip {
    background: #f1f3f6;

    border:
        1px solid #e1e5eb;

    border-radius: 999px;

    padding: 7px 10px;

    font-size: 12px;
}


/* =========================================================
   REVIEW
   ========================================================= */

.review-ratings {
    border:
        1px solid var(--line);

    border-radius: 12px;

    overflow: hidden;
}

.review-rating-row {
    display: grid;

    grid-template-columns:
        1fr 65px;

    gap: 12px;

    align-items: center;

    padding: 11px 14px;

    border-bottom:
        1px solid var(--line);
}

.review-rating-row:last-child {
    border-bottom: 0;
}

.rating-value {
    text-align: center;

    background: #eef2f7;

    border-radius: 8px;

    padding: 5px;
}

.nps-result {
    margin-top: 18px;

    padding: 16px;

    background: #f8fafc;

    border-radius: 10px;

    display: flex;

    justify-content: space-between;
}

.review-list {
    margin: 0;
}

.review-list dt {
    font-weight: 800;

    margin-top: 16px;
}

.review-list dt:first-child {
    margin-top: 0;
}

.review-list dd {
    margin: 4px 0 0;

    color: #475467;

    white-space: pre-wrap;
}

.sensitive-value {
    color: var(--danger);

    font-weight: 800;

    background: var(--danger-bg);

    padding: 7px 9px;

    border-radius: 7px;
}


/* =========================================================
   LOGIN
   ========================================================= */

.login-page {
    min-height: calc(100vh - 160px);

    display: grid;

    place-items: center;
}

.login-card {
    width: min(430px, 100%);

    background: #fff;

    border:
        1px solid var(--line);

    border-radius: 18px;

    padding: 36px;

    box-shadow:
        0 20px 50px rgba(23, 32, 51, .10);
}

.login-brand {
    display: flex;

    align-items: baseline;

    gap: 9px;

    margin-bottom: 30px;
}

.login-heading h1 {
    margin: 5px 0;

    font-size: 30px;
}

.login-heading p {
    color: var(--muted);

    margin: 0 0 24px;
}

.login-note {
    border-top:
        1px solid var(--line);

    margin-top: 25px;

    padding-top: 15px;

    color: var(--muted);

    font-size: 11px;
}

.validation-summary:empty {
    display: none;
}


/* =========================================================
   CENTER CARD
   ========================================================= */

.center-card {
    text-align: center;

    max-width: 650px;

    margin: 40px auto;
}


/* =========================================================
   EMPLOYEE ACTIVATION
   ========================================================= */

.activation-page {
    width: 100%;

    max-width: 1280px;

    margin: 0 auto;
}


/* =========================================================
   ACTIVATION HEADER
   ========================================================= */

.activation-page-header {
    margin-bottom: 28px;
}

.activation-page-header h1 {
    margin: 4px 0 8px;

    color: var(--navy);
}

.activation-page-header .muted {
    margin: 0;
}


/* =========================================================
   ACTIVATION SEARCH
   ========================================================= */

.activation-search-card {
    background: var(--card);

    border:
        1px solid var(--line);

    border-radius: 16px;

    padding: 24px;

    margin-bottom: 24px;

    box-shadow: var(--shadow);
}

.activation-search-form {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 150px;

    column-gap: 16px;

    align-items: end;
}

.activation-search-form .form-group {
    margin-bottom: 0;
}

.activation-search-form label {
    display: block;

    margin-bottom: 7px;

    color: var(--text);

    font-size: 13px;

    font-weight: 700;
}

.activation-search-form input {
    width: 100%;

    height: 46px;
}

.activation-search-button {
    align-self: end;

    display: flex;

    align-items: flex-end;
}

.activation-search-button .btn {
    width: 100%;

    height: 46px;

    min-height: 46px;
}


/* =========================================================
   ACTIVATION GRID
   ========================================================= */

.activation-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;

    align-items: stretch;
}

.activation-card {
    background: var(--card);

    border:
        1px solid var(--line);

    border-radius: 16px;

    padding: 26px;

    min-width: 0;

    box-shadow: var(--shadow);
}

.activation-action-card {
    grid-column: 1 / -1;

    border-top:
        4px solid var(--bond-green);
}


/* =========================================================
   ACTIVATION CARD HEADER
   ========================================================= */

.activation-card .card-title-row {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 18px;

    margin-bottom: 24px;
}

.activation-card .card-title-row h2 {
    margin: 4px 0 0;

    color: var(--navy);

    font-size: 21px;

    font-weight: 700;
}


/* =========================================================
   ACTIVATION EYEBROW
   ========================================================= */

.activation-page .eyebrow {
    color: var(--bond-green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .16em;
}


/* =========================================================
   ACTIVATION DETAIL GRID
   ========================================================= */

.activation-page .detail-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px 26px;
}

.detail-item {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.detail-label {
    color: var(--muted);

    font-size: 11px;

    font-weight: 600;
}

.detail-item strong {
    color: var(--text);

    font-size: 14px;

    font-weight: 700;

    line-height: 1.4;

    overflow-wrap: anywhere;
}

.role-code {
    color: var(--bond-green) !important;
}


/* =========================================================
   ACTIVATION STATUS
   ========================================================= */

.activation-page .status-badge {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 30px;

    padding: 5px 11px;

    border-radius: 999px;

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;
}

.activation-page .status-badge.success {
    background: var(--success-bg);

    color: var(--success);
}

.activation-page .status-badge.warning {
    background: var(--warning-bg);

    color: var(--warning);
}

.activation-page .bond-status {
    background: var(--bond-green-light);

    color: var(--bond-green);
}


/* =========================================================
   ACTIVATION FORM
   ========================================================= */

.activation-form {
    width: 100%;

    max-width: 720px;

    margin-top: 24px;
}

.activation-form .form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-bottom: 20px;
}

.activation-form .form-group label {
    color: var(--text);

    font-size: 13px;

    font-weight: 700;
}

.required-mark {
    color: var(--danger);

    margin-left: 3px;
}


/* =========================================================
   ACTIVATION INPUT / SELECT
   ========================================================= */

.activation-form .form-control,
.activation-form input[type="password"],
.activation-form select {
    width: 100%;

    min-height: 46px;

    padding: 11px 13px;

    border:
        1px solid #CBD3DC;

    border-radius: 9px;

    background: #FFFFFF;

    color: var(--text);

    font-size: 14px;

    outline: none;

    transition:
        border-color .15s ease,
        box-shadow .15s ease;
}

.activation-form .form-control:hover,
.activation-form input[type="password"]:hover,
.activation-form select:hover {
    border-color: #AEB8C3;
}

.activation-form .form-control:focus,
.activation-form input[type="password"]:focus,
.activation-form select:focus {
    border-color: var(--bond-green);

    box-shadow:
        0 0 0 3px
        rgba(74, 108, 51, .13);
}


/* =========================================================
   ACTIVATION HELP TEXT
   ========================================================= */

.activation-form .form-help {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   ACTIVATION BUTTON
   ========================================================= */

.activation-form .btn-bond {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding: 0 20px;

    border:
        1px solid var(--bond-green-dark);

    border-radius: 9px;

    background: var(--bond-green);

    color: #FFFFFF;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background .15s ease,
        border-color .15s ease,
        transform .05s ease;
}

.activation-form .btn-bond:hover {
    background: var(--bond-green-dark);

    border-color: var(--bond-green-dark);
}

.activation-form .btn-bond:active {
    transform: translateY(1px);
}

.button-icon {
    margin-right: 7px;

    font-weight: 800;
}


/* =========================================================
   ACTIVATION ACTIONS
   ========================================================= */

.activation-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    padding-top: 4px;
}


/* =========================================================
   ACTIVATION COMPLETE
   ========================================================= */

.activation-complete {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 20px;

    border:
        1px solid #D8E8D8;

    border-radius: 10px;

    background: var(--success-bg);
}

.activation-complete > div:last-child {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.activation-complete strong {
    color: var(--success);

    font-size: 14px;
}

.activation-complete span {
    color: #5E6B61;

    font-size: 12px;
}

.completed-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--success);

    color: #FFFFFF;

    font-size: 20px;

    font-weight: 800;
}


/* =========================================================
   ACTIVATION MUTED
   ========================================================= */

.activation-page .muted {
    color: var(--muted);

    line-height: 1.6;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .kpi-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .info-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .check-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}


/* =========================================================
   RESPONSIVE - ACTIVATION
   ========================================================= */

@media (max-width: 900px) {

    .activation-grid {
        grid-template-columns: 1fr;
    }

    .activation-action-card {
        grid-column: auto;
    }
}


/* =========================================================
   RESPONSIVE - GENERAL
   ========================================================= */

@media (max-width: 800px) {

    .topbar {
        align-items: flex-start;

        padding: 14px 18px;

        gap: 12px;

        flex-wrap: wrap;
    }

    .nav {
        width: 100%;

        margin-left: 0;

        gap: 14px;

        flex-wrap: wrap;

        justify-content: flex-end;
    }

    .page-shell {
        width:
            min(100% - 22px, 1220px);

        margin-top: 18px;
    }

    .hero {
        padding: 23px;

        flex-direction: column;

        align-items: flex-start;
    }

    .form-grid.two,
    .report-grid {
        grid-template-columns: 1fr;
    }

    .kpi-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .filter-bar {
        grid-template-columns:
            1fr 1fr;
    }

    .rating-table {
        overflow-x: auto;
    }

    .rating-header,
    .rating-row {
        min-width: 600px;
    }


    /* Bond dropdown */

    .bond-nav-dropdown-menu {
        left: 0;
        right: auto;
    }
}


/* =========================================================
   RESPONSIVE - ACTIVATION MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .activation-search-form {
        grid-template-columns: 1fr;

        row-gap: 14px;
    }

    .activation-search-form .form-group {
        margin-bottom: 0;
    }

    .activation-search-button {
        width: 100%;
    }

    .activation-search-button .btn {
        width: 100%;
    }

    .activation-page .detail-grid {
        grid-template-columns: 1fr;
    }

    .activation-card .card-title-row {
        flex-direction: column;

        align-items: flex-start;
    }

    .activation-card,
    .activation-search-card {
        padding: 20px;
    }
}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .brand-sub {
        display: none;
    }

    .nav > a,
    .nav-logout {
        font-size: 12px;
    }

    .card {
        padding: 18px;
    }

    .info-grid,
    .check-grid {
        grid-template-columns: 1fr;
    }

    .kpi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .filter-bar {
        grid-template-columns: 1fr;
    }

    .form-actions,
    .review-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .form-actions .btn,
    .review-actions .btn {
        width: 100%;
    }

    .login-card {
        padding: 25px;
    }

    .nps-scale {
        grid-template-columns:
            repeat(6, 1fr);
    }
}


/* =========================================================
   RESPONSIVE - EXTRA SMALL
   ========================================================= */

@media (max-width: 480px) {

    .activation-page-header h1 {
        font-size: 24px;
    }

    .activation-actions,
    .activation-actions .btn-bond {
        width: 100%;
    }

    .bond-nav-dropdown-menu {
        min-width: 205px;
    }
}
/* =========================================================
   HR REVIEW ACTION AREA
========================================================= */

.review-actions .section-heading {
    align-items: flex-start;
}

.review-action-heading {
    min-width: 0;
}

.review-actions form {
    width: 100%;
    margin-top: 14px;
}

.review-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.review-action-status {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 150px;
}

.review-action-label {
    color: #7b8492;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.review-action-status strong {
    color: var(--text);
    font-size: 13px;
}

.review-action-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.review-action-buttons .btn {
    min-height: 42px;
    white-space: nowrap;
}

@media (max-width: 700px) {

    .review-action-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .review-action-status {
        width: 100%;
    }

    .review-action-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .review-action-buttons .btn {
        flex: 1 1 auto;
    }
}