:root {
    --bg: #f5f6f8;
    --surface: #fff;
    --text: #17191f;
    --muted: #6f7682;
    --line: #e3e6eb;
    --primary: #25314f;
    --primary-soft: #eef1f7;
    --success: #19734a;
    --warning: #9a6300;
    --danger: #b43636;
    --shadow: 0 12px 32px rgba(24,32,50,.08);
    --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Pretendard","Noto Sans KR","Malgun Gothic",Arial,sans-serif;
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button,input,select,textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}
.header-inner { min-height: 74px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 195px; }
.brand-mark {
    width: 40px; height: 40px; border-radius: 12px;
    display: grid; place-items: center;
    color: #fff; background: var(--primary);
    font-size: 25px; font-weight: 800;
}
.brand strong,.brand small { display: block; }
.brand small { color: var(--muted); font-size: 11px; }
.main-nav { display: flex; gap: 24px; font-weight: 700; font-size: 15px; }
.account-nav { margin-left: auto; display: flex; align-items: center; gap: 14px; font-size: 14px; }
.mobile-toggle,.mobile-menu,.mobile-bottom-nav { display: none; }

.hero {
    padding: 76px 0 54px;
    background:
        radial-gradient(circle at 78% 18%, rgba(71,94,143,.14), transparent 28%),
        linear-gradient(180deg,#fff 0%,#f5f6f8 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; }
.eyebrow {
    display: inline-flex; padding: 7px 11px; border-radius: 999px;
    background: var(--primary-soft); color: var(--primary);
    font-size: 13px; font-weight: 800;
}
.hero h1 { margin: 18px 0 14px; font-size: clamp(38px,5vw,62px); line-height: 1.12; letter-spacing: -.045em; }
.hero p { margin: 0; color: var(--muted); font-size: 18px; }
.search-panel {
    margin-top: 30px; padding: 14px;
    display: grid; grid-template-columns: 1.4fr .8fr auto; gap: 10px;
    background: #fff; border: 1px solid var(--line);
    border-radius: 20px; box-shadow: var(--shadow);
}
.search-panel input,.search-panel select {
    min-height: 52px; border: 0; outline: 0;
    padding: 0 14px; border-radius: 12px; background: #f7f8fa;
}
.hero-card { padding: 28px; background: var(--primary); color: #fff; border-radius: 26px; box-shadow: var(--shadow); }
.hero-card h2 { margin-top: 0; }
.hero-card ol { margin: 22px 0 0; padding-left: 22px; }
.hero-card li { margin: 12px 0; color: rgba(255,255,255,.8); }

.section { padding: 58px 0; }
.section-white { background: #fff; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section-head h2 { margin: 0; font-size: 28px; letter-spacing: -.03em; }
.section-head p { margin: 5px 0 0; color: var(--muted); }

.quick-grid,.company-grid,.stat-grid,.dashboard-grid { display: grid; gap: 16px; }
.quick-grid { grid-template-columns: repeat(6,1fr); }
.quick-card {
    padding: 22px 16px; background: #fff; border: 1px solid var(--line);
    border-radius: 16px; text-align: center; font-weight: 800; transition: .2s;
}
.quick-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.company-grid { grid-template-columns: repeat(3,1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.company-card { position: relative; }
.company-image { aspect-ratio: 16/10; background: linear-gradient(135deg,#e9edf4,#f7f8fa); overflow: hidden; }
.company-image img { width: 100%; height: 100%; object-fit: cover; }
.company-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: #7f8795; font-weight: 800; font-size: 18px; }
.company-body { padding: 21px; }
.company-body h3 { margin: 0 0 6px; font-size: 20px; }
.company-body p { margin: 0; color: var(--muted); }
.company-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.badge {
    display: inline-flex; align-items: center; padding: 6px 9px; border-radius: 999px;
    background: #f0f2f5; color: #515966; font-size: 12px; font-weight: 800;
}
.badge-verified { background: #e9f7f0; color: var(--success); }
.badge-progress { background: #fff5dc; color: var(--warning); }
.card-actions { display: flex; gap: 8px; padding: 0 21px 21px; }
.company-select {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    padding: 9px 11px; background: rgba(255,255,255,.94);
    border-radius: 999px; font-size: 13px; font-weight: 800;
    box-shadow: 0 4px 14px rgba(0,0,0,.10);
}

.btn {
    min-height: 44px; padding: 0 17px; border: 1px solid transparent;
    border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
    gap: 7px; cursor: pointer; font-weight: 800;
}
.btn-small { min-height: 36px; padding: 0 13px; border-radius: 10px; font-size: 13px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-secondary { background: var(--primary-soft); color: var(--primary); }
.btn-ghost { background: #fff; border-color: var(--line); }
.btn-danger { background: #fff0f0; color: var(--danger); }
.btn-block { width: 100%; }

.form-wrap { width: min(780px, calc(100% - 36px)); margin: 44px auto 70px; }
.form-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.form-card h1 { margin: 0 0 8px; }
.form-card > p { margin: 0 0 26px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-weight: 800; font-size: 14px; }
.input,.select,.textarea {
    width: 100%; border: 1px solid #d7dbe2; border-radius: 12px;
    background: #fff; padding: 12px 13px; outline: 0;
}
.input,.select { min-height: 48px; }
.textarea { min-height: 130px; resize: vertical; }
.input:focus,.select:focus,.textarea:focus { border-color: #7d8baa; box-shadow: 0 0 0 3px rgba(37,49,79,.09); }
.help { color: var(--muted); font-size: 13px; }
.error-list { padding: 14px 18px; background: #fff0f0; color: #8f2c2c; border-radius: 12px; margin-bottom: 20px; }
.error-list ul { margin: 0; padding-left: 20px; }

.page-head { padding: 44px 0 24px; }
.page-head h1 { margin: 0 0 8px; font-size: 34px; }
.page-head p { margin: 0; color: var(--muted); }
.filter-bar {
    padding: 15px; display: grid; grid-template-columns: 1.2fr .8fr .8fr auto; gap: 10px;
    background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 22px;
}
.empty { padding: 54px 24px; text-align: center; background: #fff; border: 1px dashed #cfd4dc; border-radius: 18px; color: var(--muted); }

.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; padding-bottom: 60px; }
.detail-main,.detail-side { display: flex; flex-direction: column; gap: 18px; }
.panel { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.panel h2,.panel h3 { margin-top: 0; }
.panel p:last-child { margin-bottom: 0; }
.info-list { display: grid; grid-template-columns: 130px 1fr; gap: 11px 16px; }
.info-list dt { color: var(--muted); }
.info-list dd { margin: 0; font-weight: 700; }

.request-bar {
    position: fixed; left: 50%; bottom: 28px; transform: translate(-50%,130px);
    width: min(580px,calc(100% - 30px)); padding: 13px 14px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: #171b27; color: #fff; border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0,0,0,.25); z-index: 60; transition: .25s;
}
.request-bar.is-visible { transform: translate(-50%,0); }

.flash-wrap { padding-top: 16px; }
.flash { padding: 13px 16px; border-radius: 12px; margin-bottom: 8px; font-weight: 700; }
.flash-success { background: #e9f7f0; color: var(--success); }
.flash-warning { background: #fff5dc; color: var(--warning); }
.flash-danger { background: #fff0f0; color: var(--danger); }

.stat-grid { grid-template-columns: repeat(4,1fr); margin-bottom: 22px; }
.stat-card { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.stat-card strong { display: block; font-size: 28px; }
.stat-card span { color: var(--muted); }
.dashboard-grid { grid-template-columns: 1fr 1fr; }
.list { display: flex; flex-direction: column; gap: 10px; }
.list-item { padding: 16px; display: flex; justify-content: space-between; gap: 16px; background: #f8f9fb; border-radius: 13px; }
.list-item strong { display: block; }
.list-item small { color: var(--muted); }

.status-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin: 18px 0; }
.status-step { padding: 10px; text-align: center; border-radius: 10px; background: #eef0f3; color: #7b8290; font-size: 13px; font-weight: 800; }
.status-step.active { background: var(--primary); color: #fff; }

.message-list { display: flex; flex-direction: column; gap: 12px; }
.message { padding: 15px; background: #f6f7f9; border-radius: 14px; }
.message-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.message-head small { color: var(--muted); }
.site-footer { border-top: 1px solid var(--line); background: #fff; color: var(--muted); }
.footer-inner { min-height: 94px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.check-row { display: flex; align-items: center; gap: 8px; }
.inline-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.muted { color: var(--muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th,td { padding: 12px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
th { color: var(--muted); font-size: 13px; }

@media (max-width: 900px) {
    .main-nav,.account-nav { display: none; }
    .header-inner { min-height: 64px; }
    .mobile-toggle {
        display: inline-grid; margin-left: auto; width: 40px; height: 40px; place-items: center;
        border: 1px solid var(--line); background: #fff; border-radius: 10px;
    }
    .mobile-menu { padding: 0 18px 16px; background: #fff; }
    .mobile-menu.is-open { display: grid; }
    .mobile-menu a { padding: 11px 4px; border-bottom: 1px solid var(--line); }
    .hero { padding-top: 48px; }
    .hero-grid,.detail-grid,.dashboard-grid { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .quick-grid { grid-template-columns: repeat(3,1fr); }
    .company-grid { grid-template-columns: repeat(2,1fr); }
    .filter-bar { grid-template-columns: 1fr 1fr; }
    .stat-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px) {
    body { padding-bottom: 70px; }
    .container { width: min(100% - 24px,1180px); }
    .brand { min-width: auto; }
    .brand small { display: none; }
    .hero h1 { font-size: 38px; }
    .hero p { font-size: 16px; }
    .search-panel,.quick-grid,.company-grid,.form-grid,.filter-bar { grid-template-columns: 1fr; }
    .form-group.full { grid-column: auto; }
    .form-wrap { width: min(100% - 24px,780px); margin-top: 24px; }
    .form-card { padding: 22px 18px; }
    .section { padding: 42px 0; }
    .section-head { align-items: start; flex-direction: column; }
    .status-steps { grid-template-columns: repeat(2,1fr); }
    .info-list { grid-template-columns: 1fr; gap: 3px; }
    .info-list dd { margin-bottom: 10px; }
    .footer-inner { flex-direction: column; justify-content: center; text-align: center; }
    .mobile-bottom-nav {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; height: 64px;
        display: grid; grid-template-columns: repeat(5,1fr); align-items: center;
        background: rgba(255,255,255,.97); border-top: 1px solid var(--line);
    }
    .mobile-bottom-nav a { text-align: center; color: #606773; font-size: 12px; font-weight: 800; }
    .mobile-bottom-nav .bottom-primary {
        width: 48px; height: 48px; margin: -20px auto 0; display: grid; place-items: center;
        border-radius: 50%; background: var(--primary); color: #fff;
        box-shadow: 0 10px 25px rgba(37,49,79,.3);
    }
    .request-bar { bottom: 78px; }
}


/* ============================================================
   9cc.kr B2B UI V2
   7cc.kr visual language reference: structured blue business UI
   ============================================================ */

:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #f8fbff;
    --text: #0c1729;
    --muted: #657187;
    --line: #dbe4f0;
    --line-strong: #c8d5e5;
    --primary: #1268d6;
    --primary-dark: #0b4fad;
    --primary-soft: #edf5ff;
    --navy: #0b1d38;
    --navy-2: #10284b;
    --success: #147a48;
    --warning: #a96808;
    --danger: #bd3131;
    --shadow: 0 18px 48px rgba(15, 37, 70, .10);
    --shadow-soft: 0 8px 24px rgba(15, 37, 70, .07);
    --radius: 20px;
}

body {
    background:
        radial-gradient(circle at 4% 0%, rgba(18, 104, 214, .08), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 38%, #ffffff 100%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo",
                 "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 12px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    color: var(--primary);
    font-weight: 900;
}
.skip-link:focus { left: 12px; }

.container {
    width: min(1160px, calc(100% - 40px));
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(219, 228, 240, .9);
    backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 1px 0 rgba(15, 37, 70, .02);
}
.header-accent {
    height: 3px;
    background: linear-gradient(90deg, #e34242 0%, #f4b740 19%, #36a853 39%, #1268d6 67%, #6b3fd6 100%);
}
.header-inner {
    min-height: 70px;
    gap: 28px;
}
.brand {
    min-width: 246px;
    gap: 12px;
}
.brand-symbol {
    position: relative;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--navy-2), var(--navy));
    color: #fff;
    box-shadow: 0 10px 24px rgba(11, 29, 56, .20);
}
.brand-nine {
    position: relative;
    z-index: 2;
    margin-left: -3px;
    font-size: 27px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.08em;
}
.brand-node {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 2px;
    background: #45a3ff;
}
.node-a { right: 8px; top: 9px; }
.node-b { right: 5px; top: 19px; background: #42c68b; }
.node-c { right: 10px; bottom: 8px; background: #7c5ce7; }
.brand-copy strong {
    color: var(--navy);
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -.03em;
}
.brand-copy small {
    margin-top: 3px;
    color: #7b8799;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .11em;
}
.main-nav {
    gap: 3px;
}
.main-nav a {
    padding: 9px 12px;
    border-radius: 999px;
    color: #657187;
    font-size: 14px;
    font-weight: 800;
    transition: .18s ease;
}
.main-nav a:hover,
.main-nav a.active {
    background: var(--primary-soft);
    color: var(--primary);
}
.account-nav {
    gap: 12px;
}
.account-name {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
}
.account-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(20, 122, 72, .10);
}
.mobile-toggle {
    border: 0;
}
.mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    border-radius: 2px;
    background: var(--navy);
}

/* Controls */
.btn {
    min-height: 46px;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 900;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #3c89e8);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(18, 104, 214, .20);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 13px 26px rgba(18, 104, 214, .25);
}
.btn-ghost {
    background: #fff;
    border-color: var(--line-strong);
    color: #263750;
}
.btn-light {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
}
.btn-outline-light {
    color: #fff;
    border-color: rgba(255,255,255,.38);
    background: rgba(255,255,255,.04);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,.10);
}

/* Home hero */
.hero-b2b {
    position: relative;
    overflow: hidden;
    padding: 74px 0 64px;
    border-bottom: 0;
    background:
        radial-gradient(circle at 76% 16%, rgba(18, 104, 214, .13), transparent 26rem),
        radial-gradient(circle at 12% 90%, rgba(107, 63, 214, .06), transparent 22rem),
        linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}
.hero-b2b::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d7e2ef 25%, #d7e2ef 75%, transparent);
}
.hero-b2b .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) 420px;
    gap: 48px;
    align-items: center;
}
.hero-copy {
    position: relative;
    z-index: 2;
}
.hero-copy .eyebrow {
    margin: 0 0 18px;
    padding: 0;
    background: transparent;
    color: var(--primary);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
}
.hero-copy .eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-right: 9px;
    display: inline-block;
    border-radius: 50%;
    background: linear-gradient(135deg, #e34242, #f4b740, #36a853, #1268d6, #6b3fd6);
    box-shadow: 0 0 0 5px rgba(18, 104, 214, .08);
}
.hero-copy h1 {
    margin: 0 0 20px;
    color: var(--navy);
    font-size: clamp(39px, 5vw, 61px);
    line-height: 1.13;
    letter-spacing: -.055em;
    font-weight: 950;
}
.hero-copy h1 em {
    color: var(--primary);
    font-style: normal;
}
.hero-copy > p {
    max-width: 710px;
    color: #4e5d72;
    font-size: 18px;
    line-height: 1.75;
}

.b2b-search {
    margin-top: 30px;
    padding: 13px;
    grid-template-columns: 1.25fr .8fr auto;
    gap: 9px;
    border: 1px solid #cedaea;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(15, 37, 70, .11);
}
.search-field {
    min-width: 0;
    padding: 7px 13px 5px;
    border-radius: 11px;
    background: #f7f9fc;
}
.search-field label {
    display: block;
    margin-bottom: 1px;
    color: #788498;
    font-size: 11px;
    font-weight: 900;
}
.search-field input {
    width: 100%;
    min-height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}
.search-submit {
    min-width: 164px;
    gap: 14px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin-top: 19px;
    color: #637087;
    font-size: 13px;
    font-weight: 800;
}
.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.trust-row i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(20, 122, 72, .09);
}

.b2b-console {
    position: relative;
    overflow: hidden;
    padding: 25px;
    border: 1px solid rgba(98, 132, 176, .35);
    border-radius: 27px;
    background:
        linear-gradient(145deg, rgba(24, 57, 101, .74), rgba(8, 25, 49, .97)),
        var(--navy);
    color: #fff;
    box-shadow: 0 28px 65px rgba(11, 29, 56, .24);
}
.b2b-console::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #e34242, #f4b740, #36a853, #1268d6, #7c3aed);
}
.b2b-console::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -110px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(69, 163, 255, .22), transparent 68%);
}
.console-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}
.console-top small {
    display: block;
    color: #7cb8f8;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .13em;
}
.console-top strong {
    display: block;
    margin-top: 3px;
    font-size: 20px;
    letter-spacing: -.025em;
}
.console-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 9px;
    border: 1px solid rgba(90, 213, 148, .28);
    border-radius: 999px;
    background: rgba(20, 122, 72, .16);
    color: #8de1b4;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .08em;
}
.console-live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #52d493;
    box-shadow: 0 0 0 5px rgba(82, 212, 147, .10);
}
.console-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 20px;
}
.console-metrics div {
    padding: 14px 12px;
    border: 1px solid rgba(173, 201, 237, .14);
    border-radius: 13px;
    background: rgba(255,255,255,.055);
}
.console-metrics span {
    display: block;
    color: #98a9c0;
    font-size: 10px;
    font-weight: 800;
}
.console-metrics strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 25px;
    line-height: 1;
}
.console-flow {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 8px;
    margin-top: 14px;
}
.flow-row {
    display: grid;
    grid-template-columns: 32px minmax(0,1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    border: 1px solid rgba(173, 201, 237, .12);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
}
.flow-row.done {
    border-color: rgba(69, 163, 255, .28);
    background: rgba(18, 104, 214, .13);
}
.flow-index {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    background: rgba(255,255,255,.08);
    color: #8ec3ff;
    font-size: 10px;
    font-weight: 950;
}
.flow-row strong,
.flow-row small {
    display: block;
}
.flow-row strong {
    font-size: 13px;
}
.flow-row small {
    margin-top: 1px;
    color: #91a1b8;
    font-size: 10px;
}
.flow-row b {
    color: #6aaef7;
    font-size: 9px;
    letter-spacing: .08em;
}
.console-note {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 7px;
    margin-top: 16px;
}
.console-note span {
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    color: #91a1b8;
    font-size: 9px;
    font-weight: 850;
}

/* Business strip */
.business-strip {
    border-top: 1px solid #e4ebf4;
    border-bottom: 1px solid #e4ebf4;
    background: #fff;
}
.business-strip-grid {
    min-height: 82px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.business-strip-grid div {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.business-strip-grid div:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 24px;
    background: var(--line);
}
.business-strip-grid strong {
    color: var(--primary);
    font-size: 12px;
    letter-spacing: .08em;
}
.business-strip-grid span {
    color: #425168;
    font-size: 14px;
    font-weight: 850;
}

/* Sections */
.section {
    padding: 76px 0;
}
.section-soft {
    background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
    border-top: 1px solid #edf1f6;
    border-bottom: 1px solid #edf1f6;
}
.section-head {
    margin-bottom: 27px;
}
.section-head h2 {
    color: var(--navy);
    font-size: clamp(27px, 3vw, 36px);
    line-height: 1.28;
    font-weight: 950;
}
.section-head p {
    color: var(--muted);
    font-size: 15px;
}
.section-kicker,
.panel-kicker,
.cta-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .12em;
}
.section-kicker-light {
    color: #8fc4ff;
}
.text-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
}
.text-link span { margin-left: 5px; }

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}
.category-card {
    position: relative;
    display: grid;
    grid-template-columns: 47px minmax(0,1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 104px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(15,37,70,.045);
    transition: .18s ease;
}
.category-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--primary);
    transform: scaleY(0);
    transition: .18s ease;
}
.category-card:hover {
    transform: translateY(-3px);
    border-color: #b7cee9;
    box-shadow: var(--shadow-soft);
}
.category-card:hover::before {
    transform: scaleY(1);
}
.category-icon {
    position: relative;
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border: 1px solid #d4e5f9;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
}
.category-icon::before {
    font-size: 22px;
    font-weight: 850;
    line-height: 1;
}
.icon-bolt::before { content: "↯"; }
.icon-building::before { content: "▦"; }
.icon-network::before { content: "⌘"; }
.icon-monitor::before { content: "▭"; font-size: 27px; }
.icon-rental::before {
    content: "";
    width: 25px;
    height: 18px;
    box-sizing: border-box;
    border: 2px solid currentColor;
    border-radius: 4px;
    background:
        linear-gradient(currentColor, currentColor)
        50% 0 / 2px 100% no-repeat,
        linear-gradient(currentColor, currentColor)
        0 50% / 100% 2px no-repeat;
}

.icon-rental::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 50%;
    width: 11px;
    height: 6px;
    box-sizing: border-box;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    transform: translateX(-50%);
}
.icon-camera::before { content: "◉"; }
.icon-other::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: currentColor;
    box-shadow:
        11px 0 0 currentColor,
        0 11px 0 currentColor,
        11px 11px 0 currentColor;
    transform: translate(-5.5px, -5.5px);
}

.icon-other::after {
    content: "";
    position: absolute;
    width: 19px;
    height: 19px;
    border: 1.5px solid currentColor;
    border-radius: 6px;
    opacity: .35;
}
.category-card strong,
.category-card small {
    display: block;
}
.category-card strong {
    color: var(--navy);
    font-size: 17px;
}
.category-card small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}
.category-arrow {
    color: #9cb0c9;
    font-size: 18px;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.process-grid article {
    position: relative;
    min-height: 196px;
    padding: 24px 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(15,37,70,.04);
}
.process-grid article::after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -42px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18,104,214,.09), transparent 70%);
}
.process-grid span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
}
.process-grid h3 {
    margin: 25px 0 9px;
    color: var(--navy);
    font-size: 19px;
}
.process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Business company cards */
.company-grid {
    gap: 18px;
}
.business-card {
    border-color: #d7e1ed;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15,37,70,.055);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.business-card:hover {
    transform: translateY(-3px);
    border-color: #b8cde6;
    box-shadow: 0 16px 38px rgba(15,37,70,.10);
}
.business-card .company-image {
    position: relative;
    aspect-ratio: 16 / 8.6;
    background:
        linear-gradient(145deg, rgba(18,104,214,.08), rgba(11,29,56,.03)),
        #eff4fa;
}
.business-card .company-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 58%, rgba(6, 23, 44, .16));
}
.company-placeholder {
    gap: 4px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.86), rgba(237,245,255,.72)),
        repeating-linear-gradient(135deg, transparent 0 11px, rgba(18,104,214,.035) 11px 12px);
    color: var(--navy);
}
.company-placeholder span {
    font-size: 19px;
    font-weight: 950;
}
.company-placeholder small {
    color: #7791b2;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .12em;
}
.company-category {
    position: absolute;
    left: 15px;
    bottom: 13px;
    z-index: 2;
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 999px;
    background: rgba(9, 30, 57, .78);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}
.company-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.company-title-row h3 {
    color: var(--navy);
    font-size: 20px;
}
.verified-mark {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e7f7ef;
    color: var(--success);
    font-size: 13px;
    font-weight: 950;
}
.badge-region {
    background: var(--primary-soft);
    color: var(--primary-dark);
}
.business-card .card-actions {
    border-top: 1px solid #eef2f6;
    padding-top: 17px;
}
.business-card .card-actions .btn {
    flex: 1;
}
.business-empty {
    display: grid;
    gap: 4px;
}
.business-empty strong {
    color: var(--navy);
    font-size: 17px;
}
.business-empty span {
    color: var(--muted);
}

/* CTA */
.cta-section {
    padding-top: 34px;
}
.b2b-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: 34px;
    padding: 40px 42px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 88% 10%, rgba(64, 143, 234, .34), transparent 19rem),
        linear-gradient(135deg, #102b50, #091a32);
    color: #fff;
    box-shadow: 0 25px 58px rgba(11,29,56,.20);
}
.b2b-cta::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #e34242, #f4b740, #36a853, #1268d6, #7c3aed);
}
.b2b-cta h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.3;
}
.b2b-cta p {
    margin: 10px 0 0;
    color: #bdcadd;
}
.cta-label {
    color: #76b7ff;
}
.cta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 17px;
}
.cta-tags span {
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    color: #ced9e8;
    font-size: 11px;
    font-weight: 850;
}
.cta-actions {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 9px;
    min-width: 190px;
}

/* Directory */
.sub-hero {
    color: #fff;
    background:
        radial-gradient(circle at 82% 16%, rgba(69,163,255,.20), transparent 22rem),
        linear-gradient(135deg, #102b50, #081a31);
    border-bottom: 1px solid #203b5d;
}
.sub-hero-inner {
    min-height: 225px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.sub-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(34px, 4vw, 48px);
    letter-spacing: -.045em;
}
.sub-hero p {
    margin: 0;
    color: #bac8db;
    font-size: 16px;
}
.sub-hero-badge {
    width: 126px;
    height: 126px;
    flex: 0 0 126px;
    display: grid;
    place-content: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.sub-hero-badge strong,
.sub-hero-badge span {
    display: block;
}
.sub-hero-badge strong {
    font-size: 34px;
    line-height: 1;
}
.sub-hero-badge span {
    margin-top: 7px;
    color: #a9bad0;
    font-size: 11px;
    font-weight: 850;
}
.directory-wrap {
    padding-top: 28px;
}
.business-filter {
    position: relative;
    z-index: 4;
    margin-top: -63px;
    padding: 18px;
    grid-template-columns: 1.25fr .8fr .75fr auto;
    align-items: end;
    border: 1px solid #cedbea;
    border-radius: 19px;
    box-shadow: 0 17px 42px rgba(11,29,56,.15);
}
.filter-field label {
    display: block;
    margin: 0 0 6px 3px;
    color: #657187;
    font-size: 11px;
    font-weight: 900;
}
.filter-submit {
    min-height: 48px;
}
.directory-toolbar {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.directory-toolbar strong,
.directory-toolbar span {
    display: block;
}
.directory-toolbar > div:first-child strong {
    color: var(--navy);
    font-size: 18px;
}
.directory-toolbar > div:first-child span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}
.directory-guide {
    display: flex;
    gap: 7px;
}
.directory-guide span {
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: #657187;
    font-size: 10px;
    font-weight: 850;
}
.company-data-row {
    display: grid;
    grid-template-columns: 1.25fr .8fr .8fr;
    gap: 6px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #edf1f5;
}
.company-data-row div {
    min-width: 0;
}
.company-data-row small,
.company-data-row strong {
    display: block;
}
.company-data-row small {
    color: #8a95a6;
    font-size: 9px;
    font-weight: 850;
}
.company-data-row strong {
    margin-top: 3px;
    overflow: hidden;
    color: #314057;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.company-select {
    top: 13px;
    right: 13px;
    z-index: 4;
    border: 1px solid rgba(216,226,238,.9);
    color: #33435a;
}
.request-bar {
    background: #0b1d38;
}
.request-bar small {
    display: block;
    color: #79b7fa;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .12em;
}

/* Company profile */
.company-profile-hero {
    color: #fff;
    background:
        radial-gradient(circle at 80% 10%, rgba(69,163,255,.22), transparent 24rem),
        linear-gradient(135deg, #102c52, #091b34);
}
.company-profile-head {
    min-height: 282px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}
.company-profile-label {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 17px;
}
.company-profile-label span {
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    color: #c2d0e2;
    font-size: 11px;
    font-weight: 850;
}
.company-profile-label .verified-label {
    border-color: rgba(75, 211, 145, .26);
    background: rgba(20,122,72,.16);
    color: #80dfae;
}
.company-profile-copy h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 56px);
    letter-spacing: -.05em;
}
.company-profile-copy p {
    margin: 11px 0 0;
    color: #c0cde0;
    font-size: 17px;
}
.profile-location {
    margin-top: 17px;
    color: #8fbff5;
    font-size: 13px;
    font-weight: 850;
}
.profile-metrics {
    display: grid;
    grid-template-columns: repeat(3, 105px);
    gap: 8px;
}
.profile-metrics div {
    min-height: 105px;
    display: grid;
    place-content: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 17px;
    background: rgba(255,255,255,.05);
}
.profile-metrics strong,
.profile-metrics span {
    display: block;
}
.profile-metrics strong {
    font-size: 27px;
}
.profile-metrics span {
    margin-top: 4px;
    color: #a6b6cc;
    font-size: 10px;
    font-weight: 850;
}
.company-profile-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 350px;
    gap: 24px;
    padding-top: 30px;
    padding-bottom: 72px;
}
.profile-cover {
    aspect-ratio: 16 / 7.8;
    border-radius: 20px;
}
.profile-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-cover-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    gap: 5px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255,255,255,.85), rgba(236,244,254,.78)),
        repeating-linear-gradient(135deg, transparent 0 16px, rgba(18,104,214,.035) 16px 17px);
}
.profile-cover-placeholder span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}
.profile-cover-placeholder strong {
    color: var(--navy);
    font-size: 30px;
}
.profile-cover-placeholder small {
    color: #8092aa;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .12em;
}
.profile-panel {
    padding: 28px;
}
.profile-panel h2 {
    color: var(--navy);
}
.profile-panel > p {
    color: #45546a;
}
.profile-sidebar {
    position: relative;
}
.profile-action-card {
    position: sticky;
    top: 98px;
    box-shadow: var(--shadow-soft);
}
.business-info-list {
    display: grid;
    gap: 0;
    margin: 18px 0 22px;
}
.business-info-list div {
    padding: 12px 0;
    border-bottom: 1px solid #edf1f5;
}
.business-info-list dt {
    margin-bottom: 4px;
    color: #8a95a6;
    font-size: 10px;
    font-weight: 900;
}
.business-info-list dd {
    margin: 0;
    color: #27374e;
    font-size: 13px;
    font-weight: 750;
}
.profile-note {
    margin-top: 15px !important;
    color: #8a95a6;
    font-size: 10px;
    text-align: center;
}
.profile-trust-card {
    background: #f8fbff;
}
.profile-trust-card ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}
.profile-trust-card li {
    position: relative;
    padding: 6px 0 6px 18px;
    color: #59677b;
    font-size: 12px;
}
.profile-trust-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 950;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.review-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fbfdff;
}
.review-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.review-head strong,
.review-head small {
    display: block;
}
.review-head small {
    color: var(--success);
    font-size: 9px;
    font-weight: 900;
}
.review-head time {
    color: #909aaa;
    font-size: 10px;
}
.review-scores {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 13px;
}
.review-scores span {
    padding: 5px 7px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #758094;
    font-size: 9px;
}
.review-scores b {
    color: #263750;
}
.review-card p {
    margin: 12px 0 0;
    color: #526075;
    font-size: 12px;
}
.compact-empty {
    padding: 30px;
}

/* General panels/forms/dashboard B2B refinement */
.page-head {
    padding-top: 50px;
}
.page-head h1 {
    color: var(--navy);
    font-weight: 950;
    letter-spacing: -.04em;
}
.panel,
.form-card,
.stat-card,
.card {
    border-color: var(--line);
    box-shadow: 0 7px 22px rgba(15,37,70,.045);
}
.panel h2,
.panel h3,
.form-card h1 {
    color: var(--navy);
}
.form-card {
    border-top: 5px solid var(--primary);
}
.input,
.select,
.textarea {
    border-color: #ced9e6;
    background: #fff;
}
.input:focus,
.select:focus,
.textarea:focus {
    border-color: #6ba4e8;
    box-shadow: 0 0 0 3px rgba(18,104,214,.10);
}
.stat-card {
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--primary);
}
.stat-card strong {
    color: var(--navy);
}
.status-step.active {
    background: linear-gradient(135deg, var(--primary), #438de7);
}
.table-wrap {
    border-color: var(--line);
}
th {
    background: #f5f8fc;
    color: #314057;
}

/* Footer */
.site-footer {
    margin-top: 0;
    border-top: 0;
    background: #0a1a31;
    color: #a9b8cc;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .75fr 1fr;
    gap: 60px;
    padding: 48px 0 36px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 11px;
}
.footer-nine {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    color: var(--navy);
    font-size: 25px;
    font-weight: 950;
}
.footer-logo strong,
.footer-logo small {
    display: block;
}
.footer-logo strong {
    color: #fff;
    font-size: 18px;
}
.footer-logo small {
    color: #7190b4;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
}
.footer-brand p {
    max-width: 450px;
    margin: 17px 0 0;
    color: #8799b1;
    font-size: 13px;
}
.footer-links {
    display: grid;
    align-content: start;
    gap: 9px;
}
.footer-links strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 12px;
}
.footer-links a {
    color: #91a3ba;
    font-size: 12px;
}
.footer-links a:hover {
    color: #fff;
}
.footer-bottom {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #71849d;
    font-size: 10px;
}

/* Responsive */
@media (max-width: 980px) {
    .brand { min-width: auto; }
    .hero-b2b .hero-grid,
    .company-profile-layout {
        grid-template-columns: 1fr;
    }
    .b2b-console {
        max-width: 720px;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .business-filter {
        grid-template-columns: 1fr 1fr;
    }
    .filter-submit {
        grid-column: 1 / -1;
    }
    .company-profile-head {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 52px 0;
    }
    .profile-action-card {
        position: static;
    }
    .footer-grid {
        grid-template-columns: 1.4fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 24px, 1160px);
    }
    .brand-copy small { display: none; }
    .header-inner { min-height: 62px; }
    .hero-b2b {
        padding: 48px 0 40px;
    }
    .hero-copy h1 {
        font-size: 39px;
    }
    .hero-copy > p {
        font-size: 16px;
    }
    .b2b-search {
        grid-template-columns: 1fr;
    }
    .search-submit {
        min-height: 50px;
    }
    .b2b-console {
        padding: 20px 17px;
        border-radius: 21px;
    }
    .console-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
    .console-metrics div {
        padding: 12px 8px;
    }
    .console-metrics strong {
        font-size: 21px;
    }
    .business-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 8px 0;
    }
    .business-strip-grid div {
        min-height: 52px;
    }
    .business-strip-grid div:nth-child(2)::after {
        display: none;
    }
    .category-grid,
    .process-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 52px 0;
    }
    .category-card {
        min-height: 92px;
    }
    .b2b-cta {
        grid-template-columns: 1fr;
        padding: 31px 23px;
    }
    .cta-actions {
        min-width: 0;
    }
    .sub-hero-inner {
        min-height: 220px;
    }
    .sub-hero-badge {
        display: none;
    }
    .business-filter {
        margin-top: -35px;
        grid-template-columns: 1fr;
    }
    .filter-submit {
        grid-column: auto;
    }
    .directory-toolbar {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px 0;
    }
    .directory-guide {
        flex-wrap: wrap;
    }
    .company-profile-head {
        min-height: 0;
    }
    .profile-metrics {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }
    .profile-metrics div {
        min-height: 90px;
    }
    .company-profile-layout {
        padding-top: 18px;
    }
    .profile-cover-placeholder strong {
        font-size: 22px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 38px;
    }
    .footer-brand {
        grid-column: auto;
    }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 14px 0;
    }
}

/* =========================================================
   9cc NETWORK BRAND — NO NUMBER INSIDE SYMBOL
   ========================================================= */
.brand-network-symbol {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(7, 27, 59, .16));
}

.console-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.console-brand img {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    padding: 5px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}

.footer-network-symbol {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 4px;
    border-radius: 13px;
    background: #fff;
    object-fit: contain;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.footer-company-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.footer-company-info > * {
    display: inline-flex;
    align-items: center;
    color: inherit;
}

.footer-company-info > * + *::before {
    content: "";
    width: 1px;
    height: 9px;
    margin: 0 9px;
    background: rgba(255, 255, 255, .18);
}

.footer-company-info a:hover {
    color: #fff;
}

@media (max-width: 720px) {
    .brand-network-symbol {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .footer-bottom {
        align-items: flex-start;
    }

    .footer-company-info {
        line-height: 1.9;
    }

    .footer-company-info > * + *::before {
        margin: 0 7px;
    }
}
