* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fb;
    color: #182033;
}

/* =========================
   Layout
========================= */

.container {
    width: min(950px, calc(100% - 40px));
    margin: 80px auto;
}

/* =========================
   Header
========================= */

.header {
    text-align: center;
    margin-bottom: 35px;
}

.header h1 {
    margin: 0 0 10px;
    font-size: 36px;
    line-height: 1.2;
    color: #182033;
}

.header p {
    max-width: 650px;
    margin: 0 auto;
    color: #718096;
    font-size: 16px;
    line-height: 1.6;
}

/* =========================
   Scanner Card
========================= */

.scanner-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}

.form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 160px;
    gap: 12px;
    align-items: end;
}

.form-group label {
    display: block;
    margin-bottom: 8px;

    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

/* =========================
   Form
========================= */

input,
select {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    border: 1px solid #d7dce5;
    border-radius: 8px;

    background: #ffffff;
    color: #182033;

    font-size: 14px;

    outline: none;
}

input:focus,
select:focus {
    border-color: #3328a8;
    box-shadow: 0 0 0 3px rgba(51, 40, 168, 0.10);
}

/* =========================
   Buttons
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 20px;

    border: 0;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.btn-primary {
    width: 100%;
    background: #171078;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2419a5;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* =========================
   Messages
========================= */

.message {
    display: none;

    margin-top: 20px;
    padding: 15px 18px;

    border-radius: 8px;

    font-size: 14px;
    line-height: 1.5;
}

.message-success {
    display: block;
    background: #ecfdf3;
    color: #027a48;
}

.message-error {
    display: block;
    background: #fff1f2;
    color: #be123c;
}

/* =========================
   Result
========================= */

.result-card {
    max-width: 800px;
    margin: 60px auto;

    padding: 30px;

    background: #ffffff;
    border-radius: 16px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}

.result-card h1 {
    margin-top: 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;

    padding: 7px 12px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
}

.status-pending {
    background: #fff4cc;
    color: #7a5b00;
}

.status-running {
    background: #eef2ff;
    color: #3730a3;
}

.status-completed {
    background: #ecfdf3;
    color: #027a48;
}

.status-failed {
    background: #fff1f2;
    color: #be123c;
}

/* =========================
   Responsive
========================= */

@media (max-width: 700px) {

    .container {
        width: min(100% - 24px, 950px);
        margin: 40px auto;
    }

    .header h1 {
        font-size: 28px;
    }

    .scanner-card {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}



/* ========================================
   RESULT PAGE
======================================== */

.result-container {
    width: min(1180px, calc(100% - 40px));
    margin: 55px auto 80px;
}

.result-card {
    max-width: none;
    margin: 0;

    padding: 32px;

    background: #ffffff;

    border: 1px solid #e8ecf2;
    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(16, 24, 40, .05),
        0 2px 8px rgba(16, 24, 40, .03);
}


/* ========================================
   TARGET HEADER
======================================== */

.result-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 24px;

    padding-bottom: 25px;

    border-bottom: 1px solid #eef1f5;
}

.result-target {
    min-width: 0;
}

.result-label,
.section-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #8a94a6;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .08em;
}

.result-url {
    margin: 0;

    color: #172033;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.5;

    overflow-wrap: anywhere;
}


/* ========================================
   STATUS BADGES
======================================== */

.status-badge {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    min-height: 32px;

    padding: 7px 13px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
}

.status-pending {
    background: #fff7e6;
    color: #a35c00;
}

.status-running {
    background: #eef2ff;
    color: #3730a3;
}

.status-completed {
    background: #eafbf1;
    color: #067647;
}

.status-failed {
    background: #fff0f1;
    color: #b42318;
}


/* ========================================
   PROGRESS CARD
======================================== */

.progress-card {
    margin-top: 26px;

    padding: 22px;

    border: 1px solid #e9edf3;
    border-radius: 14px;

    background: #fafbfc;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.progress-title {
    display: block;

    color: #1d2939;

    font-size: 15px;
    font-weight: 800;
}

.progress-subtitle {
    display: block;

    margin-top: 4px;

    color: #98a2b3;

    font-size: 12px;
}

.progress-number {
    display: flex;
    align-items: baseline;

    gap: 3px;

    color: #667085;
}

.progress-number strong {
    color: #171078;

    font-size: 25px;
}

.progress-bar {
    position: relative;

    width: 100%;
    height: 12px;

    margin-top: 18px;

    overflow: hidden;

    border-radius: 999px;

    background: #e7e9f3;
}

.progress-fill {
    width: 0;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #171078,
            #4f46e5
        );

    transition: width .4s ease;
}

.progress-footer {
    display: flex;
    justify-content: space-between;

    margin-top: 9px;

    color: #98a2b3;

    font-size: 11px;
}

#progressPercent {
    color: #344054;

    font-weight: 800;
}


/* ========================================
   STAT CARDS
======================================== */

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;

    margin-top: 22px;
}

.stat-card {
    display: flex;
    align-items: center;

    gap: 13px;

    min-height: 95px;

    padding: 19px;

    border: 1px solid transparent;
    border-radius: 14px;
}

.stat-card strong {
    display: block;

    margin: 0;

    font-size: 28px;
    line-height: 1;
}

.stat-card span {
    display: block;

    margin-top: 7px;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .04em;
}

.stat-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    font-size: 18px;
    font-weight: 900;
}

.stat-clean {
    background: #edfcf2;
    color: #027a48;

    border-color: #d1fadf;
}

.stat-clean .stat-icon {
    background: #d1fadf;
}

.stat-suspicious {
    background: #fffaeb;
    color: #b54708;

    border-color: #fedf89;
}

.stat-suspicious .stat-icon {
    background: #fef0c7;
}

.stat-infected {
    background: #fff1f3;
    color: #c01048;

    border-color: #feccd6;
}

.stat-infected .stat-icon {
    background: #ffe4e8;
}

.stat-error {
    background: #f8f9fb;
    color: #475467;

    border-color: #e4e7ec;
}

.stat-error .stat-icon {
    background: #eaecf0;
}


/* ========================================
   NOTICE
======================================== */

.notice {
    margin-top: 22px;

    padding: 14px 16px;

    border-radius: 10px;

    font-size: 13px;
    line-height: 1.5;
}

.notice-info {
    background: #eef4ff;
    color: #3538cd;
}

.notice-success {
    background: #ecfdf3;
    color: #027a48;
}

.notice-error {
    background: #fff1f2;
    color: #be123c;
}


/* ========================================
   BUTTON AREA
======================================== */

.result-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 12px;

    margin-top: 22px;
}

.btn-auto {
    width: auto;
}


/* ========================================
   DETAIL SECTION
======================================== */

.scan-details-section {
    margin-top: 34px;
}

.section-title-row {
    display: flex;
    justify-content: space-between;

    margin-bottom: 18px;
}

.section-title-row h2 {
    margin: 0;

    color: #172033;

    font-size: 24px;
}

.section-title-row p {
    margin: 6px 0 0;

    color: #8a94a6;

    font-size: 13px;
}


/* ========================================
   SCAN PAGE CARDS
======================================== */

.scan-pages {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.scan-page {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e4e7ec;
    border-radius: 14px;

    box-shadow:
        0 4px 16px rgba(16, 24, 40, .035);

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.scan-page:hover {
    border-color: #cdd3dc;

    box-shadow:
        0 6px 18px rgba(16, 24, 40, .055);
}

.scan-page-head {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding: 17px 19px;

    border: 0;

    background: #ffffff;

    color: #172033;

    text-align: left;

    cursor: pointer;
}

.scan-page-head:hover {
    background: #fbfcfd;
}

.scan-page-head-main {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 13px;
}

.scan-page-url {
    display: block;

    color: #172033;

    font-size: 13px;
    font-weight: 700;

    overflow-wrap: anywhere;
}

.scan-page-title {
    display: block;

    margin-top: 4px;

    color: #98a2b3;

    font-size: 11px;
}

.scan-page-meta {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    gap: 12px;

    color: #667085;

    font-size: 11px;
}

.expand-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #f2f4f7;

    color: #475467;

    font-size: 17px;
}


/* ========================================
   PAGE STATUS
======================================== */

.page-status {
    min-width: 92px;

    display: inline-flex;
    justify-content: center;

    padding: 6px 9px;

    border-radius: 8px;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}

.page-status-clean {
    background: #ecfdf3;
    color: #027a48;
}

.page-status-suspicious {
    background: #fffaeb;
    color: #b54708;
}

.page-status-infected {
    background: #fff1f3;
    color: #c01048;
}

.page-status-error {
    background: #f2f4f7;
    color: #475467;
}


/* ========================================
   ACCORDION
======================================== */

.scan-page-body {
    display: none;

    padding: 0 19px 19px;
}

.scan-page.open
.scan-page-body {
    display: block;
}


/* ========================================
   FINDINGS
======================================== */

.finding {
    margin-top: 12px;

    padding: 16px;

    border: 1px solid #e4e7ec;
    border-radius: 12px;

    background: #fafafa;
}

.finding-head {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 8px;
}

.finding-head strong {
    color: #172033;

    font-size: 14px;
}

.finding p {
    margin: 7px 0;

    color: #667085;

    font-size: 12px;
    line-height: 1.6;
}

.severity-badge {
    flex-shrink: 0;

    padding: 5px 8px;

    border-radius: 7px;

    font-size: 9px;
    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .04em;
}

.severity-critical {
    background: #fee4e2;
    color: #b42318;
}

.severity-high {
    background: #fff1f3;
    color: #c01048;
}

.severity-medium {
    background: #fffaeb;
    color: #b54708;
}

.severity-low {
    background: #eff8ff;
    color: #175cd3;
}

.severity-info {
    background: #f2f4f7;
    color: #475467;
}


/* ========================================
   EVIDENCE
======================================== */

.finding-evidence {
    margin-top: 12px;
}

.finding-evidence span {
    display: block;

    margin-bottom: 6px;

    color: #98a2b3;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .06em;

    text-transform: uppercase;
}

.finding-evidence code {
    display: block;

    max-height: 180px;

    overflow: auto;

    padding: 12px 13px;

    background: #172033;

    color: #f8fafc;

    border-radius: 9px;

    font-family:
        Consolas,
        Monaco,
        monospace;

    font-size: 11px;
    line-height: 1.55;

    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.finding-category {
    margin-top: 9px;

    color: #98a2b3;

    font-size: 10px;
}


/* ========================================
   CLEAN / ERROR MESSAGE
======================================== */

.page-clean-message {
    padding: 13px 15px;

    border: 1px solid #d1fadf;
    border-radius: 9px;

    background: #ecfdf3;

    color: #027a48;

    font-size: 12px;
}

.page-error {
    padding: 14px 15px;

    border: 1px solid #fecdca;
    border-radius: 9px;

    background: #fef3f2;

    color: #b42318;
}


/* ========================================
   EMPTY STATE
======================================== */

.empty-state {
    min-height: 160px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 30px;

    background: #ffffff;

    border: 1px dashed #cfd5df;
    border-radius: 14px;

    color: #98a2b3;

    text-align: center;
}

.empty-state strong {
    color: #475467;

    font-size: 14px;
}

.empty-state span {
    font-size: 12px;
}

.empty-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 5px;

    border-radius: 50%;

    background: #f2f4f7;

    color: #667085;

    font-size: 20px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 800px) {

    .result-container {
        width: calc(100% - 24px);

        margin-top: 32px;
    }

    .result-card {
        padding: 20px;
    }

    .result-top {
        flex-direction: column;
    }

    .progress-header {
        align-items: flex-start;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .scan-page-head {
        align-items: flex-start;
    }

    .scan-page-head-main {
        align-items: flex-start;
    }

    .page-status {
        min-width: auto;
    }

}

@media (max-width: 520px) {

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .result-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-auto {
        width: 100%;
    }

    .scan-page-head {
        flex-direction: column;
    }

    .scan-page-meta {
        width: 100%;

        justify-content: space-between;
    }

}
/* =========================
   Result Final
========================= */

.result-container {
    max-width: 1100px;
}

.scan-details-section {
    margin-top: 30px;
}

.section-title-row {
    margin-bottom: 18px;
}

.section-title-row h2 {
    margin: 0 0 6px;
    font-size: 22px;
}

.section-title-row p {
    margin: 0;
    color: #667085;
    font-size: 14px;
}


/* =========================
   Scan Pages
========================= */

.scan-pages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scan-page {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e4e7ec;
    border-radius: 12px;

    box-shadow: 0 5px 18px rgba(0,0,0,.04);
}

.scan-page-head {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 20px;

    border: 0;

    background: #ffffff;

    color: #182033;

    text-align: left;

    cursor: pointer;
}

.scan-page-head:hover {
    background: #fafbfc;
}

.scan-page-head-main {
    min-width: 0;

    display: flex;
    align-items: flex-start;

    gap: 12px;
}

.scan-page-url {
    display: block;

    max-width: 720px;

    overflow-wrap: anywhere;

    font-size: 14px;
}

.scan-page-title {
    display: block;

    margin-top: 5px;

    color: #98a2b3;

    font-size: 12px;
}

.scan-page-meta {
    flex-shrink: 0;

    display: flex;
    align-items: center;

    gap: 15px;

    color: #667085;

    font-size: 12px;
}

.expand-icon {
    width: 25px;
    height: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f2f4f7;

    font-size: 18px;
}


/* =========================
   Page Status
========================= */

.page-status {
    flex-shrink: 0;

    display: inline-flex;

    padding: 5px 8px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}

.page-status-clean {
    background: #ecfdf3;
    color: #027a48;
}

.page-status-suspicious {
    background: #fffaeb;
    color: #b54708;
}

.page-status-infected {
    background: #fff1f3;
    color: #c01048;
}

.page-status-error {
    background: #f2f4f7;
    color: #475467;
}


/* =========================
   Accordion
========================= */

.scan-page-body {
    display: none;

    padding: 0 20px 20px;
}

.scan-page.open
.scan-page-body {
    display: block;
}


/* =========================
   Findings
========================= */

.finding {
    margin-top: 12px;

    padding: 16px;

    border: 1px solid #e4e7ec;
    border-radius: 10px;

    background: #fafafa;
}

.finding-head {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 10px;
}

.finding p {
    margin: 8px 0;

    color: #475467;

    font-size: 13px;
    line-height: 1.6;
}

.severity-badge {
    display: inline-flex;

    padding: 4px 8px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}

.severity-critical {
    background: #fee4e2;
    color: #b42318;
}

.severity-high {
    background: #fff1f3;
    color: #c01048;
}

.severity-medium {
    background: #fffaeb;
    color: #b54708;
}

.severity-low {
    background: #eff8ff;
    color: #175cd3;
}

.severity-info {
    background: #f2f4f7;
    color: #475467;
}

.finding-evidence {
    margin-top: 12px;
}

.finding-evidence span {
    display: block;

    margin-bottom: 6px;

    color: #667085;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}

.finding-evidence code {
    display: block;

    max-height: 180px;

    overflow: auto;

    padding: 12px;

    border-radius: 8px;

    background: #101828;

    color: #f2f4f7;

    white-space: pre-wrap;
    overflow-wrap: anywhere;

    font-size: 12px;
    line-height: 1.5;
}

.finding-category {
    margin-top: 10px;

    color: #98a2b3;

    font-size: 11px;
}


/* =========================
   Clean / Error
========================= */

.page-clean-message {
    padding: 15px;

    border-radius: 8px;

    background: #ecfdf3;

    color: #027a48;

    font-size: 13px;
}

.page-error {
    padding: 15px;

    border-radius: 8px;

    background: #fef3f2;

    color: #b42318;
}

.page-error p {
    margin: 8px 0 0;

    font-size: 13px;
}


/* =========================
   Empty
========================= */

.empty-state {
    padding: 40px 20px;

    background: #ffffff;

    border: 1px dashed #d0d5dd;
    border-radius: 12px;

    color: #98a2b3;

    text-align: center;
}


/* =========================
   Responsive
========================= */

@media (max-width: 700px) {

    .scan-page-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .scan-page-meta {
        width: 100%;

        justify-content: space-between;
    }

    .scan-page-head-main {
        width: 100%;
    }

    .finding-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ========================================
   GLOBAL Header
======================================== */

:root {
    --primary: #20198c;
    --primary-dark: #171064;
    --text: #172033;
    --muted: #667085;
    --border: #e4e7ec;
    --background: #f6f8fc;
    --white: #ffffff;
}

body {
    background: var(--background);
}


/* ========================================
   SITE HEADER
======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, .96);

    border-bottom: 1px solid #e9edf3;

    backdrop-filter: blur(12px);
}

.nav-container {
    width: min(1180px, calc(100% - 40px));

    min-height: 74px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ========================================
   BRAND
======================================== */

.brand {
    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--text);

    text-decoration: none;

    flex-shrink: 0;
}

.brand-logo {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 11px;

    background: #f1f3f8;
}

.brand-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.brand-text strong {
    display: block;

    font-size: 15px;
    font-weight: 800;

    line-height: 1.2;
}

.brand-text span {
    display: block;

    margin-top: 3px;

    color: #98a2b3;

    font-size: 10px;

    letter-spacing: .04em;

    text-transform: uppercase;
}


/* ========================================
   DESKTOP NAV
======================================== */

.main-nav {
    display: flex;
    align-items: center;

    gap: 6px;
}

.nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: 42px;

    padding: 0 14px;

    border-radius: 9px;

    color: #667085;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease;
}

.nav-link:hover {
    background: #f2f4f7;

    color: var(--text);
}

.nav-link.active {
    background: #eeedff;

    color: var(--primary);
}


/* ========================================
   MOBILE BUTTON
======================================== */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: #ffffff;

    color: var(--text);

    font-size: 20px;

    cursor: pointer;
}

.mobile-nav {
    display: none;

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto 14px;

    padding: 10px;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 12px;
}

.mobile-nav a {
    display: block;

    padding: 11px 12px;

    border-radius: 8px;

    color: var(--muted);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.mobile-nav a:hover {
    background: #f2f4f7;
}

.mobile-nav a.active {
    background: #eeedff;

    color: var(--primary);
}

.mobile-nav.open {
    display: block;
}


/* ========================================
   MAIN
======================================== */

.site-main {
    min-height: calc(100vh - 200px);
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
    margin-top: 70px;

    background: #ffffff;

    border-top: 1px solid #e9edf3;
}

.footer-container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

    padding: 32px 0;

    display: flex;
    justify-content: space-between;

    gap: 30px;
}

.footer-container strong {
    color: var(--text);

    font-size: 14px;
}

.footer-container p {
    max-width: 480px;

    margin: 7px 0 0;

    color: #98a2b3;

    font-size: 12px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    align-items: flex-start;

    gap: 18px;
}

.footer-links a {
    color: #667085;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 15px 20px;

    border-top: 1px solid #f0f2f5;

    color: #98a2b3;

    font-size: 11px;

    text-align: center;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 820px) {

    .main-nav {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .brand-text span {
        display: none;
    }

}

@media (max-width: 600px) {

    .nav-container {
        width: calc(100% - 24px);

        min-height: 66px;
    }

    .mobile-nav {
        width: calc(100% - 24px);
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 13px;
    }

    .footer-container {
        width: calc(100% - 24px);

        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }

}

/* ========================================
   HOME FEATURES
======================================== */

.home-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;

    margin-top: 28px;
}

.home-feature-card {
    padding: 20px;

    background: #ffffff;

    border: 1px solid #e4e7ec;
    border-radius: 14px;

    box-shadow:
        0 5px 18px rgba(16, 24, 40, .035);
}

.home-feature-card strong {
    display: block;

    margin-bottom: 8px;

    color: #172033;

    font-size: 14px;
}

.home-feature-card p {
    margin: 0;

    color: #667085;

    font-size: 12px;
    line-height: 1.65;
}

.form-submit {
    display: flex;
    align-items: flex-end;
}

@media (max-width: 800px) {

    .home-features {
        grid-template-columns: 1fr;
    }

}