﻿:root {
    --bg: #eef3fb;
    --bg-2: #f4f7fe;
    --surface: #ffffff;
    --surface-2: #f8fbff;
    --surface-3: #f3f7fd;
    --text: #0f172a;
    --muted: #64748b;
    --muted-2: #8a9ab0;
    --line: #dbe5f4;
    --line-strong: #c9d8ec;
    --brand: #2563eb;
    --brand-dark: #0f3fc2;
    --brand-deep: #0f172a;
    --success: #166534;
    --success-bg: #eafaf0;
    --warning-bg: #fff7e8;
    --warning-text: #9a5b00;
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.06);
    --max: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behaviour: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    color: var(--text);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(var(--max), calc(100% - 24px));
    margin: 0 auto;
}

/* Top bar */
.topbar {
    padding: 10px 0 0;
}

.topbar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--muted);
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar a {
    color: var(--muted);
    font-weight: 700;
}

    .topbar a:hover {
        color: var(--brand-dark);
    }

.topbar-phone,
.topbar-note,
.topbar-cta {
    white-space: nowrap;
}

.topbar-sep {
    color: var(--muted-2);
}

.topbar-cta {
    color: var(--brand-dark) !important;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0 0;
    background: transparent;
}

.header-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 86px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    min-width: 160px;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: auto;
    height: 58px;
    max-width: 190px;
    object-fit: contain;
}

.brand-fallback {
    display: none;
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-deep);
    letter-spacing: -0.03em;
}

.site-nav-shell {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
    min-width: 0;
}

    .site-nav a {
        color: var(--muted);
        font-weight: 700;
        font-size: 15px;
        white-space: nowrap;
        transition: color .18s ease;
    }

        .site-nav a:hover,
        .site-nav a:focus {
            color: var(--brand-dark);
        }

.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 14px;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
}

    .nav-toggle span {
        display: block;
        height: 3px;
        margin: 5px 0;
        background: var(--brand-deep);
        border-radius: 20px;
    }

.nav-pill,
.site-nav .nav-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--brand-dark);
    font-weight: 700;
    white-space: nowrap;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

    .nav-pill:hover,
    .site-nav .nav-pill:hover {
        transform: translateY(-1px);
        border-color: var(--line-strong);
        box-shadow: var(--shadow-soft);
        color: var(--brand-dark);
    }

/* Hero */
.hero {
    padding: 26px 0 18px;
    background: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 24px;
    align-items: stretch;
}

.hero-copy,
.hero-card {
    min-width: 0;
}

.hero-copy {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.22);
    padding: 30px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.16);
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: .98;
    letter-spacing: -0.04em;
    color: #fff;
}

.hero p.lead {
    font-size: 19px;
    color: rgba(255,255,255,0.88);
    margin: 0 0 18px;
    max-width: 720px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 22px 0;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

    .hero-points li {
        color: rgba(255,255,255,0.92);
        font-weight: 700;
    }

.hero-card,
.card,
.info-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 26px;
}

.mock-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c7d7e7;
}

.mock-message {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fbfdff;
    padding: 16px;
    margin-bottom: 14px;
}

    .mock-message strong {
        color: var(--brand-deep);
    }

.mock-caption {
    font-size: 14px;
    color: var(--muted);
}

.hero-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.info-card {
    padding: 20px;
}

    .info-card h3 {
        margin: 0 0 8px;
        color: var(--brand-deep);
        font-size: 18px;
        letter-spacing: -0.02em;
    }

    .info-card p {
        margin: 0;
        color: var(--muted);
    }

/* Sections */
.section {
    padding: 16px 0 28px;
}

.section-tight {
    padding: 10px 0 24px;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 26px;
}

    .section-heading h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        line-height: 1.02;
        letter-spacing: -0.03em;
        color: var(--brand-deep);
        margin: 0 0 12px;
    }

    .section-heading p {
        margin: 0;
        color: var(--muted);
        font-size: 18px;
    }

.grid-3,
.grid-4,
.grid-2 {
    display: grid;
    gap: 16px;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    padding: 24px;
}

    .card h3 {
        margin-top: 0;
        margin-bottom: 10px;
        color: var(--brand-deep);
        font-size: 22px;
        letter-spacing: -0.02em;
    }

    .card p:last-child,
    .card ul:last-child {
        margin-bottom: 0;
    }

.icon-badge {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--surface-3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
    border: 1px solid var(--line);
    color: var(--brand-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 16px;
    padding: 14px 18px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--line);
    cursor: pointer;
    min-height: 52px;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

    .btn:hover {
        text-decoration: none;
        transform: translateY(-1px);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    background: rgba(255,255,255,0.96);
    border-color: var(--line);
    color: var(--text) !important;
}

.btn-sm {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 14px;
}

/* Lists */
.check-list,
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .check-list li,
    .feature-list li {
        padding-left: 28px;
        position: relative;
        margin-bottom: 12px;
        color: var(--muted);
    }

        .check-list li:before,
        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 700;
            color: var(--success);
        }

/* Bands / pricing / tags */
.band {
    background: linear-gradient(180deg, #f0f6ff 0%, #e9f1fd 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.price-card {
    position: relative;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: var(--brand-deep);
    line-height: 1;
    margin: 14px 0 8px;
    letter-spacing: -0.03em;
}

    .price small {
        font-size: 16px;
        color: var(--muted);
        font-weight: 600;
    }

.tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--brand-dark);
    background: #eef4ff;
    border: 1px solid #d5e3ff;
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 10px;
}

/* CTA panel */
.cta-panel {
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.22);
}

    .cta-panel h2,
    .cta-panel h3,
    .cta-panel p {
        color: #fff;
    }

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.cta-panel .btn-secondary {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.18);
    color: #fff !important;
}

/* Page hero */
.page-hero {
    padding: 26px 0 18px;
    background: none;
}

    .page-hero .container {
        background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
        color: #fff;
        border-radius: 30px;
        box-shadow: 0 18px 42px rgba(37, 99, 235, 0.22);
        padding: 24px;
    }

    .page-hero h1 {
        margin: 0 0 10px;
        font-size: clamp(2rem, 4.8vw, 3rem);
        color: #fff;
        line-height: .98;
        letter-spacing: -0.04em;
    }

    .page-hero p {
        margin: 0 0 12px;
        max-width: 820px;
        color: rgba(255,255,255,0.88);
        font-size: 18px;
    }

/* Demo / form pages */
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--brand-deep);
}

.form-input,
.form-select,
select.form-input {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: var(--text);
    font: inherit;
    margin-bottom: 10px;
}

    .form-input:focus,
    .form-select:focus,
    select.form-input:focus {
        outline: none;
        border-color: #b8cdf6;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
    }

.form-input--plate {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.form-grid {
    margin-top: 6px;
}

.form-help-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .form-help-row .form-input {
        margin-bottom: 0;
    }

.form-note {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
}

.form-error {
    display: block;
    margin-bottom: 14px;
    color: #b42318;
    font-weight: 700;
}

.form-summary {
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid #f1b4b4;
    border-radius: 16px;
    background: #fff5f5;
    color: #8b1e1e;
}

    .form-summary ul {
        margin: 10px 0 0 18px;
        padding: 0;
    }

.mandatory {
    color: #b42318;
    font-weight: 700;
    margin-left: 4px;
}

.mandatory_standard {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.form-textarea {
    min-height: 220px;
    resize: vertical;
    line-height: 1.5;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.service-options {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

    .service-option input {
        margin: 0;
        flex: 0 0 auto;
    }

    .service-option span {
        flex: 1 1 auto;
    }

.form-help-inline {
    margin-top: 12px;
}

/* Demo layout refinements */
.demo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: 18px;
    align-items: start;
}

.demo-sidebar {
    min-width: 0;
    position: sticky;
    top: 24px;
}

    .demo-sidebar .card,
    .demo-sidebar .testimonial-card {
        padding: 20px 22px;
    }

    .demo-sidebar h3 {
        margin-bottom: 12px;
    }

    .demo-sidebar p,
    .demo-sidebar li {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .demo-sidebar .card + .card,
    .demo-sidebar .testimonial-card + .card,
    .demo-sidebar .card + .testimonial-card {
        margin-top: 14px !important;
    }

.demo-form-section {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #d9e4f2;
}

    .demo-form-section:first-of-type {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

.demo-actions {
    margin-top: 22px;
}

/* Demo reg lookup */
.demo-reg-lookup-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin-bottom: 12px;
}

.form-input--plate-yellow {
    background: linear-gradient(180deg, #ffe36a 0%, #ffd83d 100%) !important;
    border: 2px solid #1f1f1f !important;
    border-radius: 10px !important;
    color: #111 !important;
    font-weight: 800 !important;
    font-size: 24px !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 10px 14px !important;
    min-height: 42px !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.45) !important;
    flex: 0 1 440px;
    width: 100%;
    max-width: 440px;
    min-width: 240px;
}

    .form-input--plate-yellow::placeholder {
        color: rgba(17,17,17,0.55) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
    }

    .form-input--plate-yellow:focus {
        outline: none !important;
        border-color: #111 !important;
        box-shadow: 0 0 0 4px rgba(255, 216, 61, 0.35) !important;
    }

.demo-lookup-button {
    white-space: nowrap;
    min-width: 140px;
}

.demo-lookup-message {
    margin: 0 0 12px 0;
    padding: 12px 14px;
    border: 1px solid #cfe2ff;
    border-radius: 12px;
    background: #f5f9ff;
    color: #163b66;
}

    .demo-lookup-message h3 {
        margin: 0 0 4px 0;
        font-size: 15px;
        line-height: 1.3;
        font-weight: 700;
    }

    .demo-lookup-message p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
    }

/* Footer */
.site-footer {
    padding: 24px 0 36px;
    margin-top: 12px;
    background: none;
    color: inherit;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 24px;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 22px;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-logo {
    display: block;
    width: auto;
    height: 50px;
    max-width: 200px;
    object-fit: contain;
}

.footer-brand {
    display: none;
    color: var(--brand-deep);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.site-footer h4 {
    color: var(--brand-deep);
    margin-top: 0;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

.site-footer a {
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 700;
}

    .site-footer a:hover {
        color: var(--brand-dark);
        text-decoration: underline;
    }

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 18px 0 0;
    margin-top: 18px;
    font-size: 14px;
    color: var(--muted);
    grid-column: 1 / -1;
}

/* Tables / notices / boxes */
.table-like {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.96);
    border-radius: 18px;
    overflow: hidden;
}

    .table-like th,
    .table-like td {
        padding: 14px;
        border-bottom: 1px solid var(--line);
        text-align: left;
    }

    .table-like th {
        color: var(--brand-deep);
        background: #f7fbff;
    }

.notice {
    padding: 16px 18px;
    background: var(--warning-bg);
    border: 1px solid #f0dd96;
    border-radius: 16px;
    color: var(--warning-text);
}

.contact-box {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.video-card {
    padding: 24px;
}

.video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #dfeaf5;
}

    .video-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

.video-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.testimonial-card blockquote {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.5;
    color: var(--brand-deep);
}

/* Extra utility styles */
.directory-panel,
.directory-callout {
    background: linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%);
    border: 1px solid #d8e5ff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 24px;
}

.directory-panel__eyebrow,
.directory-callout__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e7efff;
    color: var(--brand-dark);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.directory-panel p,
.directory-callout p {
    color: var(--muted);
}

.directory-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.loggedout-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

/* Responsive */
@media (min-width: 1200px) {
    .demo-layout {
        grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.68fr);
        gap: 22px;
    }
}

@media (max-width: 1180px) {
    .site-nav {
        gap: 14px;
    }

        .site-nav a {
            font-size: 14px;
        }

    .brand-logo {
        height: 54px;
        max-width: 180px;
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .grid-4,
    .hero-meta-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .demo-layout {
        grid-template-columns: 1fr;
    }

    .demo-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 980px) {
    .topbar-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .topbar-right {
        gap: 12px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav-shell {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        border-radius: 20px;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

        .site-nav-shell.open {
            display: flex;
        }

    .site-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

        .site-nav a,
        .site-nav .nav-pill {
            width: 100%;
            justify-content: center;
            text-align: center;
        }

    .site-nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

        .site-nav-actions a,
        .site-nav-actions .btn {
            width: 100%;
            justify-content: center;
            text-align: center;
        }

    .hero-grid,
    .grid-3,
    .grid-2,
    .grid-4,
    .footer-grid,
    .hero-meta-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .hero p.lead,
    .section-heading p,
    .page-hero p {
        font-size: 17px;
    }

    .testimonial-card blockquote {
        font-size: 18px;
    }

    .form-help-row {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 700px) {
    .demo-reg-lookup-row {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .form-input--plate-yellow {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 18px, var(--max));
    }

    .topbar {
        padding-top: 8px;
    }

    .topbar-wrap {
        font-size: 13px;
    }

    .topbar-left,
    .topbar-right {
        width: 100%;
    }

    .topbar-sep {
        display: none;
    }

    .header-wrap {
        min-height: 72px;
        padding: 14px;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        height: 46px;
        max-width: 150px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .hero-copy,
    .card,
    .hero-card,
    .info-card,
    .cta-panel,
    .page-hero .container,
    .footer-grid,
    .directory-panel,
    .directory-callout {
        padding: 18px;
    }

    .btn {
        width: 100%;
    }

    .hero-actions,
    .cta-actions,
    .directory-actions {
        flex-direction: column;
    }

    .price {
        font-size: 34px;
    }
}
