﻿/* =========================================================
   GLOBAL
   ========================================================= */

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.ch-standalone-body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: #18343b;
    background: #f3f7f8;
    font-family: Inter, Arial, sans-serif;
}

/* =========================================================
   PORTAL PAGE VARIABLES
   ========================================================= */

.ch-page {
    --ch-primary: #064f5c;
    --ch-primary-dark: #033943;
    --ch-primary-light: #0b7180;
    --ch-accent: #f97343;
    --ch-background: #f3f7f8;
    --ch-surface: #ffffff;
    --ch-border: #d8e3e5;
    --ch-text: #12343c;
    --ch-muted: #6b8085;
    --ch-success: #237a57;
    --ch-danger: #b42318;
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 100vh;
    padding: 22px;
    color: var(--ch-text);
    background: var(--ch-background);
}

/* =========================================================
   PORTAL HERO
   ========================================================= */

.ch-hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    min-height: 270px;
    padding: 34px 38px;
    overflow: hidden;
    color: #ffffff;
    border-radius: 27px;
    background: radial-gradient( circle at 88% 15%, rgba(255, 255, 255, 0.12), transparent 32% ), linear-gradient( 135deg, #033f4a 0%, #075866 55%, #137687 100% );
    box-shadow: 0 22px 52px rgba(6, 79, 92, 0.18);
}

    .ch-hero::before {
        position: absolute;
        top: -150px;
        right: -80px;
        width: 390px;
        height: 390px;
        content: "";
        border: 50px solid rgba(255, 255, 255, 0.045);
        border-radius: 50%;
    }

    .ch-hero::after {
        position: absolute;
        right: 140px;
        bottom: -180px;
        width: 310px;
        height: 310px;
        content: "";
        border: 40px solid rgba(255, 255, 255, 0.025);
        border-radius: 50%;
    }

.ch-hero-content,
.ch-hero-actions {
    position: relative;
    z-index: 2;
}

.ch-hero-content {
    max-width: 930px;
}

.ch-hero-heading {
    display: flex;
    align-items: center;
    gap: 22px;
}

.ch-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 88px;
    flex: 0 0 105px;
    padding: 9px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.ch-hero-logo-image {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 88px !important;
    max-height: 70px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
}

.ch-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.ch-hero-title h1 {
    max-width: 780px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.ch-hero-description {
    max-width: 790px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
}

.ch-security-message {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 23px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.91);
    background: rgba(255, 255, 255, 0.075);
    font-size: 12px;
}

    .ch-security-message i {
        color: #75d0d6;
    }

.ch-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 11px 17px;
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 750;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

    .ch-button:hover {
        transform: translateY(-2px);
    }

.ch-button-light {
    color: var(--ch-primary-dark);
    background: #ffffff;
    box-shadow: 0 13px 24px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   SUMMARY CARDS
   ========================================================= */

.ch-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.ch-summary-card {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 86px;
    padding: 18px;
    border: 1px solid var(--ch-border);
    border-radius: 19px;
    background: var(--ch-surface);
    box-shadow: 0 10px 25px rgba(21, 57, 65, 0.055);
}

.ch-summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 15px;
    color: var(--ch-primary);
    background: #e8f3f4;
    font-size: 18px;
}

.ch-summary-content {
    min-width: 0;
}

    .ch-summary-content span {
        display: block;
        margin-bottom: 5px;
        color: var(--ch-muted);
        font-size: 11px;
    }

    .ch-summary-content strong {
        display: block;
        overflow: hidden;
        color: var(--ch-text);
        font-size: 17px;
        line-height: 1.25;
        text-overflow: ellipsis;
    }

/* =========================================================
   DELIVERY PACKAGE
   ========================================================= */

.ch-package-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ch-package {
    overflow: hidden;
    border: 1px solid var(--ch-border);
    border-radius: 22px;
    background: var(--ch-surface);
    box-shadow: 0 13px 32px rgba(21, 57, 65, 0.065);
}

.ch-package-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--ch-border);
    background: linear-gradient( 180deg, #ffffff, #f8fbfb );
}

.ch-package-label {
    display: block;
    margin-bottom: 7px;
    color: var(--ch-primary-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.ch-package-title h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--ch-primary-dark);
    font-size: 21px;
}

    .ch-package-title h2 i {
        color: var(--ch-primary-light);
        font-size: 17px;
    }

.ch-file-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--ch-primary);
    background: #e8f3f4;
    font-size: 11px;
    font-weight: 800;
}

/* =========================================================
   FILE TABLE
   ========================================================= */

.ch-file-table-wrapper {
    overflow-x: auto;
}

.ch-file-table {
    width: 100%;
    border-collapse: collapse;
}

    .ch-file-table th,
    .ch-file-table td {
        padding: 16px 20px;
        border-bottom: 1px solid #edf2f3;
        text-align: left;
        vertical-align: middle;
    }

    .ch-file-table th {
        color: var(--ch-muted);
        background: #fbfcfc;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.09em;
        text-transform: uppercase;
    }

    .ch-file-table tbody tr:last-child td {
        border-bottom: 0;
    }

    .ch-file-table tbody tr {
        transition: background-color 150ms ease;
    }

        .ch-file-table tbody tr:hover {
            background: #f8fbfb;
        }

.ch-file-name {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 320px;
}

.ch-file-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    color: var(--ch-primary);
    background: #e9f3f4;
    font-size: 17px;
}

.ch-file-details {
    min-width: 0;
}

    .ch-file-details strong {
        display: block;
        margin-bottom: 4px;
        color: var(--ch-text);
        font-size: 13px;
    }

    .ch-file-details small {
        display: block;
        max-width: 420px;
        overflow: hidden;
        color: var(--ch-muted);
        font-size: 10px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.ch-file-type {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border: 1px solid var(--ch-border);
    border-radius: 999px;
    color: var(--ch-muted);
    background: #ffffff;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.ch-file-size,
.ch-file-date {
    color: #29474e;
    font-size: 12px;
    white-space: nowrap;
}

.ch-action-column {
    text-align: right !important;
}

.ch-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 11px;
    color: #ffffff;
    background: linear-gradient( 135deg, var(--ch-primary), var(--ch-primary-light) );
    box-shadow: 0 9px 18px rgba(7, 74, 90, 0.19);
    font-size: 11px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

    .ch-download-button:hover {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 13px 24px rgba(7, 74, 90, 0.25);
    }

/* =========================================================
   EMPTY STATE
   ========================================================= */

.ch-empty-state {
    padding: 60px 30px;
    border: 1px dashed #bfd0d4;
    border-radius: 24px;
    text-align: center;
    background: #ffffff;
}

.ch-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    border-radius: 22px;
    color: var(--ch-primary);
    background: #e9f3f4;
    font-size: 27px;
}

.ch-empty-state h2 {
    margin: 0 0 9px;
    color: var(--ch-primary-dark);
}

.ch-empty-state p {
    max-width: 580px;
    margin: 0 auto;
    color: var(--ch-muted);
    line-height: 1.65;
}

/* =========================================================
   PORTAL FOOTER
   ========================================================= */

.ch-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 86px;
    padding: 17px 22px;
    overflow: hidden;
    border: 1px solid var(--ch-border);
    border-radius: 19px;
    background: #ffffff;
    box-shadow: 0 9px 23px rgba(21, 57, 65, 0.045);
}

.ch-footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 230px;
}

.ch-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 52px;
    flex: 0 0 62px;
    padding: 5px;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f8f9;
}

.ch-footer-logo-image {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 53px !important;
    max-height: 43px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
}

.ch-footer-brand-text strong,
.ch-footer-brand-text span {
    display: block;
}

.ch-footer-brand-text strong {
    margin-bottom: 3px;
    color: var(--ch-primary-dark);
    font-size: 14px;
}

.ch-footer-brand-text span {
    color: var(--ch-muted);
    font-size: 10px;
}

.ch-footer-notice {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    max-width: 680px;
    color: var(--ch-muted);
    text-align: right;
}

    .ch-footer-notice i {
        color: var(--ch-primary-light);
        font-size: 14px;
    }

    .ch-footer-notice p {
        margin: 0;
        font-size: 10px;
        line-height: 1.5;
    }

/* =========================================================
   PREMIUM CLIENT ACCESS PAGE
   ========================================================= */

.ch-access-page,
.ch-access-page *,
.ch-access-page *::before,
.ch-access-page *::after {
    box-sizing: border-box;
}

.ch-access-page {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 42px;
    overflow: hidden;
    background: radial-gradient( circle at 10% 10%, rgba(103, 199, 207, 0.16), transparent 32% ), radial-gradient( circle at 90% 85%, rgba(248, 111, 64, 0.13), transparent 30% ), linear-gradient( 135deg, #032f38 0%, #064b58 48%, #075e6d 100% );
}

.ch-access-background-mark {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ch-access-background-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.ch-access-background-circle-one {
    top: -170px;
    right: -100px;
    width: 560px;
    height: 560px;
    box-shadow: 0 0 0 75px rgba(255, 255, 255, 0.025), 0 0 0 150px rgba(255, 255, 255, 0.018);
}

.ch-access-background-circle-two {
    bottom: -260px;
    left: -190px;
    width: 620px;
    height: 620px;
    box-shadow: 0 0 0 85px rgba(255, 255, 255, 0.025);
}

.ch-access-background-grid {
    position: absolute;
    inset: 0;
    opacity: 0.24;
    background-image: linear-gradient( rgba(255, 255, 255, 0.025) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px );
    background-size: 48px 48px;
}

.ch-access-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(390px, 520px);
    align-items: center;
    gap: clamp(55px, 8vw, 130px);
    width: min(1380px, 100%);
    margin: auto;
}

.ch-access-introduction {
    max-width: 720px;
    color: #ffffff;
}

.ch-access-company-brand {
    display: flex;
    align-items: center;
    width: 210px;
    height: 115px;
    margin-bottom: 28px;
    overflow: hidden;
}

.ch-access-company-logo {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 205px !important;
    max-height: 110px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.ch-access-kicker {
    display: block;
    margin-bottom: 14px;
    color: #75d0d6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.ch-access-introduction h1 {
    max-width: 700px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 67px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.ch-access-introduction > p {
    max-width: 650px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.73);
    font-size: 17px;
    line-height: 1.75;
}

.ch-access-feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-top: 36px;
}

.ch-access-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.065);
    backdrop-filter: blur(8px);
}

    .ch-access-feature > span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        border-radius: 12px;
        color: #ffffff;
        background: rgba(103, 199, 207, 0.22);
        font-size: 15px;
    }

    .ch-access-feature strong,
    .ch-access-feature small {
        display: block;
    }

    .ch-access-feature strong {
        margin-bottom: 5px;
        color: #ffffff;
        font-size: 13px;
        line-height: 1.35;
    }

    .ch-access-feature small {
        color: rgba(255, 255, 255, 0.62);
        font-size: 11px;
        line-height: 1.5;
    }

.ch-access-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 12px;
}

    .ch-access-trust i {
        color: #74d2d6;
    }

.ch-access-panel {
    width: 100%;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 30px;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 252, 0.98) );
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.26), 0 8px 24px rgba(0, 0, 0, 0.14);
}

.ch-access-panel-header {
    text-align: left;
}

.ch-access-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient( 135deg, #075565, #0a7482 );
    box-shadow: 0 15px 28px rgba(7, 85, 101, 0.25);
    font-size: 20px;
}

.ch-access-panel-label {
    display: block;
    margin-bottom: 8px;
    color: #0b7582;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.ch-access-panel h2 {
    margin: 0;
    color: #073b46;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.ch-access-panel-header p {
    margin: 14px 0 0;
    color: #6d8085;
    font-size: 14px;
    line-height: 1.65;
}

.ch-access-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 30px;
}

.ch-form-group {
    width: 100%;
}

    .ch-form-group label {
        display: block;
        margin-bottom: 9px;
        color: #183b43;
        font-size: 13px;
        font-weight: 750;
    }

.ch-input-wrapper {
    position: relative;
    width: 100%;
}

    .ch-input-wrapper i {
        position: absolute;
        top: 50%;
        left: 17px;
        z-index: 1;
        color: #0a7582;
        transform: translateY(-50%);
    }

    .ch-input-wrapper input {
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        height: 56px;
        margin: 0;
        padding: 0 18px 0 48px;
        border: 1px solid #c9d7da;
        border-radius: 14px;
        outline: none;
        color: #183b43;
        background: #ffffff;
        box-sizing: border-box !important;
        font-family: inherit;
        transition: border-color 160ms ease, box-shadow 160ms ease;
    }

        .ch-input-wrapper input:focus {
            border-color: #0a7582;
            box-shadow: 0 0 0 4px rgba(10, 117, 130, 0.12);
        }

        .ch-input-wrapper input::placeholder {
            color: #9babad;
        }

.ch-access-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    padding: 14px 19px;
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient( 135deg, #075565, #0a7582 );
    box-shadow: 0 15px 28px rgba(7, 85, 101, 0.22);
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

    .ch-access-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 19px 34px rgba(7, 85, 101, 0.28);
    }

.ch-access-panel-security {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 25px;
    padding-top: 21px;
    border-top: 1px solid #e1e8ea;
}

    .ch-access-panel-security div {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: #628087;
        font-size: 10px;
        font-weight: 700;
        text-align: center;
    }

    .ch-access-panel-security i {
        color: #23805b;
    }

.ch-access-support {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    max-width: 390px;
    margin: 18px auto 0;
    color: #718489;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

    .ch-access-support i {
        margin-top: 2px;
        color: #0a7582;
    }

.ch-validation-summary,
.ch-field-error {
    color: #b42318;
    font-size: 12px;
}

    .ch-validation-summary ul {
        margin: 0;
        padding-left: 18px;
    }

.ch-access-footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: min(1380px, 100%);
    margin: 40px auto 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

/* =========================================================
   RESPONSIVE PORTAL
   ========================================================= */

@media (max-width: 1120px) {
    .ch-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ch-access-shell {
        grid-template-columns: 1fr 460px;
        gap: 50px;
    }

    .ch-access-feature-list {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
}

@media (max-width: 900px) {
    .ch-access-page {
        padding: 26px 18px;
    }

    .ch-access-shell {
        grid-template-columns: 1fr;
        gap: 42px;
        max-width: 580px;
    }

    .ch-access-introduction {
        text-align: center;
    }

    .ch-access-company-brand {
        justify-content: center;
        margin-right: auto;
        margin-left: auto;
    }

    .ch-access-company-logo {
        object-position: center !important;
    }

    .ch-access-introduction > p {
        margin-right: auto;
        margin-left: auto;
    }

    .ch-access-feature-list {
        display: none;
    }

    .ch-access-trust {
        justify-content: center;
    }

    .ch-access-panel {
        padding: 34px 28px;
    }

    .ch-access-footer {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
}

@media (max-width: 760px) {
    .ch-page {
        padding: 13px;
    }

    .ch-hero {
        flex-direction: column;
        min-height: auto;
        padding: 25px 21px;
        border-radius: 22px;
    }

    .ch-hero-heading {
        align-items: flex-start;
    }

    .ch-hero-logo {
        width: 78px;
        height: 68px;
        flex-basis: 78px;
    }

    .ch-hero-logo-image {
        max-width: 64px !important;
        max-height: 54px !important;
    }

    .ch-hero-title h1 {
        font-size: 30px;
    }

    .ch-hero-actions,
    .ch-hero-actions form,
    .ch-button-light {
        width: 100%;
    }

    .ch-summary-grid {
        grid-template-columns: 1fr;
    }

    .ch-package-header {
        align-items: flex-start;
    }

    .ch-file-table,
    .ch-file-table tbody,
    .ch-file-table tr,
    .ch-file-table td {
        display: block;
        width: 100%;
    }

        .ch-file-table thead {
            display: none;
        }

        .ch-file-table tr {
            padding: 13px 0;
            border-bottom: 1px solid var(--ch-border);
        }

        .ch-file-table tbody tr:last-child {
            border-bottom: 0;
        }

        .ch-file-table td {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 9px 18px;
            border: 0;
            text-align: right;
        }

            .ch-file-table td::before {
                flex: 0 0 95px;
                content: attr(data-label);
                color: var(--ch-muted);
                font-size: 9px;
                font-weight: 800;
                letter-spacing: 0.07em;
                text-align: left;
                text-transform: uppercase;
            }

            .ch-file-table td:first-child {
                align-items: flex-start;
                flex-direction: column;
            }

                .ch-file-table td:first-child::before {
                    display: none;
                }

    .ch-file-name {
        width: 100%;
        min-width: 0;
        text-align: left;
    }

    .ch-file-details small {
        max-width: 240px;
    }

    .ch-action-column {
        text-align: right !important;
    }

    .ch-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .ch-footer-notice {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 520px) {
    .ch-access-page {
        padding: 20px 13px;
    }

    .ch-access-company-brand {
        width: 165px;
        height: 92px;
        margin-bottom: 17px;
    }

    .ch-access-company-logo {
        max-width: 160px !important;
        max-height: 88px !important;
    }

    .ch-access-introduction h1 {
        font-size: 32px;
    }

    .ch-access-introduction > p {
        font-size: 14px;
    }

    .ch-access-panel {
        padding: 28px 20px;
        border-radius: 23px;
    }

        .ch-access-panel h2 {
            font-size: 25px;
        }

    .ch-access-panel-security {
        grid-template-columns: 1fr;
    }

    .ch-access-footer {
        margin-top: 28px;
    }

    .ch-hero-heading {
        flex-direction: column;
    }

    .ch-hero-title h1 {
        font-size: 27px;
    }

    .ch-security-message {
        align-items: flex-start;
        border-radius: 16px;
    }
}
.ch-browser-page {
    min-height: 100vh;
    background: linear-gradient(135deg,#083d49,#126878);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.ch-browser-card {
    width: 620px;
    max-width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,.18);
}

.ch-browser-logo {
    width: 140px;
    margin-bottom: 25px;
}

.ch-browser-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #083d49;
}

.ch-browser-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.ch-browser-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.ch-browser-button {
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

    .ch-browser-button.chrome {
        background: #1a73e8;
    }

    .ch-browser-button.edge {
        background: #0a7a8c;
    }

    .ch-browser-button:hover {
        transform: translateY(-3px);
    }

    .ch-browser-button i {
        margin-right: 10px;
    }

.ch-browser-card small {
    color: #888;
}
