:root {
    --marketing-primary: #0F1B2E;
    --marketing-primary-soft: #F3F6FA;
    --marketing-accent: #2D7D8F;
    --marketing-accent-soft: #EAF5F7;
    --marketing-gold: #F59E0B;
    --marketing-green: #16A34A;
    --marketing-red: #E11D48;
    --marketing-text: #172033;
    --marketing-muted: #667085;
    --marketing-border: rgba(15, 27, 46, 0.1);
    --marketing-shadow: 0 18px 45px rgba(15, 27, 46, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #FAFAF9;
    color: var(--marketing-text);
    font-family: var(--font-family, "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

a {
    color: inherit;
}

.site-header,
.site-footer,
.hero-section,
.section,
.split-section,
.page-hero,
.cta-band {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
    background: rgba(250, 250, 249, 0.88);
    backdrop-filter: blur(18px);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-mark {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.brand-link strong,
.brand-link small {
    display: block;
    line-height: 1.1;
}

.brand-link strong {
    color: var(--marketing-primary);
    font-size: 15px;
}

.brand-link small {
    color: var(--marketing-muted);
    font-size: 12px;
    font-weight: 600;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--marketing-muted);
    font-size: 14px;
    font-weight: 650;
}

.site-nav a,
.site-footer a,
.text-link {
    text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover {
    color: var(--marketing-accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--marketing-primary);
    color: #FFFFFF;
    box-shadow: 0 12px 26px rgba(15, 27, 46, 0.18);
}

.btn-primary:hover {
    background: #1B2B45;
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--marketing-primary);
    border-color: var(--marketing-border);
}

.btn-secondary:hover {
    background: var(--marketing-primary-soft);
}

.btn-large {
    min-height: 50px;
    padding-inline: 24px;
}

.hero-section {
    min-height: calc(100vh - 78px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
    align-items: center;
    gap: 44px;
    padding: 48px 0 76px;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    color: var(--marketing-primary);
    font-size: clamp(44px, 7vw, 76px);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-copy h1 {
    font-size: clamp(57px, 9.1vw, 99px);
}

.hero-copy h1.hero-title-compact {
    font-size: clamp(51.3px, 8.19vw, 89.1px);
}

.hero-subtitle,
.page-hero p,
.split-section p,
.feature-card p,
.feature-detail p,
.pricing-card p,
.contact-panel p {
    color: var(--marketing-muted);
    font-size: 17px;
    line-height: 1.65;
}

.hero-subtitle {
    max-width: 720px;
    margin: 24px 0 0;
}

.eyebrow,
.card-kicker {
    margin: 0 0 12px;
    color: var(--marketing-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.product-visual,
.appointment-panel,
.values-panel,
.demo-card,
.contact-panel,
.demo-form,
.mini-table,
.calendar-preview,
.search-panel,
.directory-stack,
.decision-panel,
.settings-grid {
    border: 1px solid var(--marketing-border);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: var(--marketing-shadow);
}

.product-visual {
    width: 100%;
    max-width: 560px;
    justify-self: end;
    padding: 18px;
}

.hero-showcase-carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    justify-self: end;
}

.hero-showcase-track {
    position: relative;
    min-height: 535px;
}

.hero-showcase-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 420ms ease, transform 420ms ease;
}

.hero-showcase-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-showcase-slide > .po-showcase-card,
.hero-showcase-slide > .ref-showcase-card,
.hero-showcase-slide > .outreach-showcase-card,
.hero-showcase-slide > .appointment-showcase-card {
    height: 100%;
}

.hero-showcase-arrow {
    position: absolute;
    z-index: 2;
    top: 267px;
    display: grid;
    width: 42px;
    height: 42px;
    min-height: 0;
    place-items: center;
    padding: 0 0 3px;
    border: 1px solid rgba(29, 62, 72, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 7px 20px rgba(31, 66, 76, 0.09);
    color: rgba(29, 62, 72, 0.46);
    font: inherit;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
    overflow: hidden;
}

.hero-showcase-arrow span {
    display: block;
    width: 100%;
    font: inherit;
    line-height: 34px;
    text-align: center;
}

.hero-showcase-arrow-previous {
    left: -21px;
}

.hero-showcase-arrow-next {
    right: -21px;
}

.hero-showcase-arrow:hover,
.hero-showcase-arrow:focus-visible {
    border-color: rgba(45, 125, 143, 0.28);
    background: #FFFFFF;
    box-shadow: 0 9px 24px rgba(31, 66, 76, 0.14);
    color: var(--marketing-accent);
}

.hero-showcase-arrow:focus-visible {
    outline: 3px solid rgba(45, 125, 143, 0.16);
    outline-offset: 3px;
}

.hero-showcase-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.hero-showcase-controls button {
    width: 10px;
    height: 10px;
    min-height: 0;
    border: 1px solid var(--marketing-border);
    border-radius: 999px;
    padding: 0;
    background: #FFFFFF;
    color: transparent;
    font: inherit;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    overflow: hidden;
}

.hero-showcase-controls button.is-active,
.hero-showcase-controls button:hover,
.hero-showcase-controls button:focus-visible {
    border-color: rgba(45, 125, 143, 0.35);
    background: var(--marketing-accent);
    color: transparent;
}

.hero-showcase-controls button:focus-visible {
    outline: 3px solid rgba(45, 125, 143, 0.16);
    outline-offset: 3px;
}

.po-showcase-card {
    width: 100%;
    max-width: 600px;
    justify-self: end;
    display: flex;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--marketing-border);
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: var(--marketing-shadow);
    overflow: hidden;
}

.po-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--marketing-primary);
    color: #FFFFFF;
}

.po-showcase-header strong {
    font-size: 15px;
    font-weight: 900;
}

.po-showcase-header span {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.po-workflow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
    align-items: stretch;
    gap: 14px;
    margin-top: 16px;
}

.po-mini-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    padding: 12px;
    border: 1px solid var(--marketing-border);
    border-radius: 15px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    box-shadow: 0 10px 22px rgba(15, 27, 46, 0.06);
}

.po-panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-left: 4px;
    margin-bottom: 7px;
}

.po-panel-title span {
    color: var(--marketing-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.po-panel-rule {
    display: block;
    width: min(86px, 55%);
    height: 2px;
    margin-left: 4px;
    margin-bottom: 9px;
    border-radius: 999px;
    background: rgba(15, 27, 46, 0.16);
}

.po-document-preview {
    display: grid;
    gap: 5px;
    min-height: 0;
    padding: 10px;
    border: 1px solid rgba(15, 27, 46, 0.1);
    border-radius: 12px;
    background: #FFFFFF;
    overflow: hidden;
}

.po-doc-barcode {
    display: block;
    width: 90%;
    height: 10px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, var(--marketing-primary) 0 2px, transparent 2px 5px);
    opacity: 0.72;
}

.po-document-preview strong,
.po-document-preview small {
    display: block;
    line-height: 1.15;
}

.po-document-preview strong {
    color: var(--marketing-primary);
    font-size: 13px;
    font-weight: 850;
}

.po-document-preview small {
    color: var(--marketing-muted);
    font-size: 10px;
    font-weight: 750;
}

.po-doc-line {
    height: 8px;
    border-radius: 999px;
    background: rgba(15, 27, 46, 0.12);
}

.po-doc-line.wide {
    width: 92%;
}

.po-doc-line.short {
    width: 58%;
}

.po-doc-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 4px 7px;
    border: 1px solid #E4EBF2;
    border-radius: 10px;
    background: #F8FAFC;
    color: var(--marketing-muted);
    font-size: 10px;
    font-weight: 800;
}

.po-doc-field b {
    color: var(--marketing-green);
    font-size: 10px;
}

.po-flow-connector {
    align-self: center;
    display: grid;
    justify-items: center;
    gap: 5px;
    padding-top: 14px;
    color: var(--marketing-accent);
    line-height: 1.2;
    text-align: center;
}

.po-flow-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(45, 125, 143, 0.26);
    border-radius: 999px;
    background: #E9FBFA;
    color: var(--marketing-accent);
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(17, 184, 173, 0.12);
}

.po-flow-connector strong,
.po-flow-connector small {
    display: block;
    color: var(--marketing-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.po-flow-connector strong {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 900;
}

.po-flow-connector small {
    color: var(--marketing-accent);
    font-size: 9px;
    font-weight: 900;
}

.po-field-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 0;
}

.po-extract-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding: 9px 2px 1px;
    border-top: 1px solid rgba(22, 163, 74, 0.14);
    color: var(--marketing-muted);
    font-size: 10px;
    font-weight: 800;
}

.po-extract-footer span {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #DCFCE7;
    color: var(--marketing-green);
    font-size: 9px;
    line-height: 1;
}

.po-field-row {
    min-height: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 4px 8px;
    border: 1px solid #C8EDD0;
    border-radius: 11px;
    background: #F3FBF4;
    color: var(--marketing-primary);
    font-size: 11px;
    font-weight: 750;
}

.po-field-row b {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #DCFCE7;
    color: var(--marketing-green);
    font-size: 12px;
    line-height: 1;
}

.po-field-row:first-child,
.po-field-row:last-child {
    grid-column: auto;
}

.po-process-strip {
    width: 100%;
    margin: 14px 0 0;
    padding: 12px 14px;
    border: 1px solid #D9E8EF;
    border-radius: 14px;
    background: linear-gradient(180deg, #F7FBFD, #F2F8FB);
    overflow: hidden;
}

.po-process-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    width: 100%;
}

.po-process-step {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.po-process-copy {
    display: block;
    min-width: 0;
}

.po-process-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #CFE0E8;
    background: #FFFFFF;
    box-shadow: 0 4px 10px rgba(15, 27, 47, 0.04);
    color: #43617A;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.po-process-kicker,
.po-process-copy strong {
    display: block;
}

.po-process-kicker {
    color: var(--marketing-muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.po-process-copy strong {
    margin-top: 1px;
    color: var(--marketing-primary);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
}

.po-process-arrow {
    color: #88A3B7;
    font-size: 18px;
    font-weight: 900;
}

.ref-showcase-card {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    padding: 15px 15px 20px;
    border: 1px solid var(--marketing-border);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: var(--marketing-shadow);
}

.ref-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    background: var(--marketing-primary);
    color: #FFFFFF;
}

.ref-showcase-header strong {
    font-size: 14px;
    font-weight: 850;
}

.ref-showcase-header span {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.ref-card-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    flex: 1;
    margin-top: 12px;
}

.ref-reminder-slip {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    min-height: 190px;
    padding: 13px 15px;
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 12px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px) 0 0 / 100% 24px,
        #FFFBEB;
    box-shadow: 0 12px 24px rgba(146, 64, 14, 0.1);
}

.ref-slip-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(146, 64, 14, 0.24);
}

.ref-slip-topline strong,
.ref-slip-topline small {
    display: block;
}

.ref-slip-topline strong {
    color: #451A03;
    font-size: 14px;
    font-weight: 850;
}

.ref-slip-topline small {
    margin-top: 3px;
    color: #92400E;
    font-size: 10px;
    font-weight: 750;
}

.ref-stamp {
    display: inline-grid;
    gap: 1px;
    padding: 5px 8px;
    border: 1px solid rgba(22, 163, 74, 0.42);
    border-radius: 6px;
    background: #ECFDF5;
    color: #047857;
    text-align: center;
    white-space: nowrap;
}

.ref-stamp b {
    display: block;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.05;
}

.ref-slip-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 8px;
}

.ref-slip-field {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    gap: 6px;
    min-width: 0;
}

.ref-slip-field span {
    color: #92400E;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.ref-slip-field b {
    display: block;
    min-width: 0;
    padding: 0 2px 3px;
    border-bottom: 1px solid rgba(146, 64, 14, 0.36);
    color: var(--marketing-primary);
    font-family: "Segoe Script", "Bradley Hand", "Comic Sans MS", cursive;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
}

.ref-reminder-slip p {
    margin: auto 0 0;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(245, 158, 11, 0.14);
    color: #92400E;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.3;
}

.ref-timeline {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 12px;
    min-width: 0;
    min-height: 0;
    padding: 13px 14px;
    border: 1px solid var(--marketing-border);
    border-radius: 12px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.ref-automation-header {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--marketing-border);
}

.ref-automation-header strong {
    display: block;
    color: var(--marketing-primary);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
}

.ref-action-list {
    display: grid;
    align-content: space-between;
    gap: 8px;
    min-width: 0;
}

.ref-action-step {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    min-width: 0;
    padding: 7px 10px;
    border: 1px solid rgba(45, 125, 143, 0.12);
    border-radius: 8px;
    background: #FFFFFF;
}

.ref-action-step > span {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(45, 125, 143, 0.2);
    border-radius: 999px;
    background: var(--marketing-accent-soft);
    color: var(--marketing-accent);
    font-size: 10px;
    font-weight: 900;
}

.ref-action-step strong {
    display: block;
}

.ref-action-step strong {
    color: var(--marketing-primary);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.25;
}

.ref-auto-stop {
    grid-column: 1 / -1;
    padding: 10px 12px;
    border-radius: 8px;
    background: #ECFDF5;
    color: #047857;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.ref-showcase-copy {
    margin: 11px 0 8px;
    padding: 10px 13px;
    border-radius: 8px;
    background: var(--marketing-accent-soft);
    color: var(--marketing-muted);
    font-size: 13px;
    line-height: 1.5;
}

.outreach-showcase-card {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    padding: 15px 15px 20px;
    border: 1px solid var(--marketing-border);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: var(--marketing-shadow);
}

.outreach-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    background: var(--marketing-primary);
    color: #FFFFFF;
}

.outreach-showcase-header strong {
    font-size: 14px;
    font-weight: 850;
}

.outreach-showcase-header span {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.outreach-flow {
    display: grid;
    gap: 10px;
    margin-top: 12px;
    min-height: 0;
}

.outreach-step,
.outreach-send-action {
    border: 1px solid var(--marketing-border);
    border-radius: 8px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    box-shadow: 0 10px 22px rgba(15, 27, 46, 0.06);
}

.outreach-step {
    padding: 10px 12px;
}

.outreach-step-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--marketing-border);
}

.outreach-step-title span {
    color: var(--marketing-primary);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.outreach-step-title b {
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--marketing-accent-soft);
    color: var(--marketing-accent);
    font-size: 10px;
    font-weight: 850;
}

.outreach-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.outreach-filter-grid > b {
    min-width: 0;
    padding: 7px 6px;
    border: 1px solid rgba(45, 125, 143, 0.12);
    border-radius: 999px;
    background: var(--marketing-primary-soft);
    color: var(--marketing-primary);
    font-size: 10px;
    font-weight: 850;
    text-align: center;
    white-space: nowrap;
}

.outreach-result-list {
    display: grid;
    gap: 5px;
}

.outreach-result {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 5px 8px;
    border: 1px solid rgba(45, 125, 143, 0.12);
    border-radius: 8px;
    background: #FFFFFF;
}

.outreach-result > span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--marketing-accent-soft);
    color: var(--marketing-accent);
    font-size: 9px;
    font-weight: 900;
}

.outreach-result strong,
.outreach-result small {
    display: block;
}

.outreach-result strong {
    color: var(--marketing-primary);
    font-size: 12px;
    font-weight: 850;
}

.outreach-result small {
    color: var(--marketing-muted);
    font-size: 10px;
    line-height: 1.25;
}

.outreach-send-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 11px;
    background: #ECFDF5;
    border-color: rgba(22, 163, 74, 0.18);
}

.outreach-send-action strong {
    display: block;
}

.outreach-send-action strong {
    color: var(--marketing-primary);
    font-size: 13px;
    font-weight: 850;
}

.outreach-send-action > b {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--marketing-primary);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 850;
    white-space: nowrap;
}

.appointment-showcase-card {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    padding: 15px 15px 20px;
    border: 1px solid var(--marketing-border);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: var(--marketing-shadow);
    overflow: hidden;
}

.appointment-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    background: var(--marketing-primary);
    color: #FFFFFF;
}

.appointment-showcase-header strong {
    font-size: 14px;
    font-weight: 850;
}

.appointment-showcase-header span {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.appointment-card-body {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 0;
    flex: 1;
    margin-top: 12px;
    padding: 10px;
    border: 1px solid #E0E5FA;
    border-radius: 12px;
    background: linear-gradient(145deg, #FAFBFF 0%, #F2F5FF 100%);
}

.appointment-calendar-panel,
.appointment-list-panel {
    min-width: 0;
}

.appointment-calendar-panel {
    padding: 0;
}

.appointment-list-panel {
    min-height: 0;
    padding: 9px 12px;
    border: 1px solid #D9E0FA;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 8px 20px rgba(67, 56, 202, 0.05);
    overflow: hidden;
}

.appointment-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.appointment-section-title strong {
    color: #3730A3;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.appointment-section-title span {
    color: #6366F1;
    font-size: 9px;
    font-weight: 850;
}

.appointment-day-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.appointment-day-strip div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2px 6px;
    padding: 9px;
    border: 1px solid #DCE2FA;
    border-radius: 10px;
    background: linear-gradient(180deg, #FFFFFF 0%, #EEF2FF 100%);
    box-shadow: 0 5px 12px rgba(67, 56, 202, 0.05);
}

.appointment-day-strip div:nth-child(2) {
    border-color: #A5B4FC;
    background: linear-gradient(180deg, #EEF2FF 0%, #E0E7FF 100%);
}

.appointment-day-strip strong,
.appointment-day-strip span,
.appointment-day-strip b {
    font-size: 10px;
}

.appointment-day-strip strong {
    color: #312E81;
    font-weight: 900;
}

.appointment-day-strip span {
    color: var(--marketing-muted);
}

.appointment-day-strip b {
    grid-column: 1 / -1;
    color: #4F46E5;
    font-weight: 850;
}

.appointment-list {
    position: relative;
    display: grid;
    gap: 0;
}

.appointment-list::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 75px;
    width: 1px;
    border-radius: 999px;
    background: rgba(129, 140, 248, 0.38);
}

.appointment-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 58px 12px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid #E3E7F5;
}

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

.appointment-row strong {
    min-width: 0;
    color: #1E293B;
    font-size: 10.5px;
    font-weight: 850;
}

.appointment-row time {
    color: #4F46E5;
    font-size: 9px;
    font-weight: 850;
    white-space: nowrap;
}

.appointment-agenda-marker {
    width: 8px;
    height: 8px;
    border: 1px solid #818CF8;
    border-radius: 50%;
    background: #FFFFFF;
}

.appointment-status {
    flex: 0 0 auto;
    padding: 3px 6px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
}

.appointment-status.staffed {
    background: #DCFCE7;
    color: #047857;
}

.appointment-status.unstaffed {
    background: #FFF7ED;
    color: #C2410C;
}

.appointment-status.review {
    background: #E2E8F0;
    color: #475569;
}

.appointment-sync-strip {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border: 1px solid #C7D2FE;
    border-radius: 10px;
    background: linear-gradient(90deg, #EEF2FF 0%, #E0F2FE 100%);
}

.appointment-sync-strip > span {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #DCFCE7;
    color: var(--marketing-green);
    font-size: 12px;
    font-weight: 900;
}

.appointment-sync-strip strong,
.appointment-sync-strip small {
    display: block;
}

.appointment-sync-strip strong {
    color: var(--marketing-primary);
    font-size: 11px;
    font-weight: 850;
}

.appointment-sync-strip small {
    margin-top: 2px;
    color: var(--marketing-muted);
    font-size: 9px;
}

.visual-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    background: var(--marketing-primary);
    color: #FFFFFF;
    font-size: 13px;
}

.visual-topbar span {
    font-weight: 800;
}

.visual-topbar strong {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 11px;
    line-height: 1;
}

.po-gator-workflow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
    margin-top: 12px;
}

.po-gator-mini-card {
    display: grid;
    align-content: start;
    gap: 9px;
    min-height: 224px;
    padding: 12px;
    border: 1px solid var(--marketing-border);
    border-radius: 8px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    box-shadow: 0 10px 22px rgba(15, 27, 46, 0.06);
}

.po-gator-label {
    color: var(--marketing-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.document-preview {
    display: grid;
    gap: 6px;
    height: 138px;
    padding: 12px;
    border: 1px solid rgba(15, 27, 46, 0.12);
    border-radius: 8px;
    background: #FFFFFF;
    overflow: hidden;
}

.document-barcode {
    display: block;
    width: 86%;
    height: 8px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, var(--marketing-primary) 0 2px, transparent 2px 5px);
    opacity: 0.74;
}

.document-preview strong,
.document-preview small {
    display: block;
    color: var(--marketing-primary);
    line-height: 1.15;
}

.document-preview strong {
    font-size: 12px;
    font-weight: 850;
}

.document-preview small {
    color: var(--marketing-muted);
    font-size: 10px;
    font-weight: 750;
}

.document-field {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    background: var(--marketing-primary-soft);
    color: var(--marketing-muted);
    font-size: 10px;
    font-weight: 800;
}

.document-field b {
    color: var(--marketing-accent);
    font-size: 10px;
}

.document-preview em {
    display: block;
    width: 58%;
    height: 7px;
    border-radius: 999px;
    background: rgba(15, 27, 46, 0.12);
}

.document-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.document-card-footer strong,
.document-card-footer small {
    display: block;
}

.document-card-footer strong {
    color: var(--marketing-primary);
    font-size: 13px;
    line-height: 1.25;
}

.document-card-footer small {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--marketing-accent-soft);
    color: var(--marketing-accent);
    font-size: 11px;
    font-weight: 800;
}

.po-gator-flow {
    align-self: center;
    display: grid;
    justify-items: center;
    gap: 8px;
    color: var(--marketing-accent);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.po-gator-flow::before {
    content: "->";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--marketing-border);
    border-radius: 999px;
    background: #FFFFFF;
    color: var(--marketing-accent);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(15, 27, 46, 0.08);
}

.po-gator-flow span {
    max-width: 72px;
    padding: 5px 7px;
    border-radius: 999px;
    background: var(--marketing-accent-soft);
}

.po-gator-details ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.po-gator-details li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 30px;
    padding: 6px 8px;
    border: 1px solid rgba(22, 163, 74, 0.14);
    border-radius: 8px;
    background: #F0FDF4;
    color: var(--marketing-primary);
    font-size: 11px;
    font-weight: 750;
}

.po-gator-details b {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #DCFCE7;
    color: var(--marketing-green);
    font-size: 12px;
    line-height: 1;
}

.po-gator-details li:first-child,
.po-gator-details li:last-child {
    grid-column: 1 / -1;
}

.po-gator-copy {
    margin: 12px 0 0;
    padding: 11px 14px;
    border-radius: 8px;
    background: var(--marketing-accent-soft);
    color: var(--marketing-muted);
    font-size: 13px;
    line-height: 1.5;
}

.section,
.split-section,
.page-hero,
.cta-band {
    padding: 86px 0;
}

.page-hero.compact {
    max-width: 940px;
    margin-inline: auto;
    text-align: center;
}

.page-hero.compact h1 {
    font-size: clamp(40px, 6vw, 64px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading h2,
.split-section h2,
.feature-detail h2,
.cta-band h2,
.contact-panel h2,
.demo-card h2 {
    margin: 0;
    color: var(--marketing-primary);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: 0;
}

.card-grid {
    display: grid;
    gap: 16px;
}

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

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

.feature-card,
.pricing-card {
    padding: 26px;
    border: 1px solid var(--marketing-border);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(15, 27, 46, 0.06);
}

.feature-card h3,
.pricing-card h2 {
    margin: 0;
    color: var(--marketing-primary);
    font-size: 22px;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--feature-accent);
}

.feature-card-po {
    --feature-accent: #2D7D8F;
    --feature-soft: #E9F6F5;
}

.feature-card-referral {
    --feature-accent: #D97706;
    --feature-soft: #FFF7E8;
}

.feature-card-outreach {
    --feature-accent: #0F9F83;
    --feature-soft: #E9F9F4;
}

.feature-card-tracking {
    --feature-accent: #6366F1;
    --feature-soft: #EEF2FF;
}

.feature-card .card-kicker {
    color: var(--feature-accent);
}

.feature-card-visual {
    height: 64px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    padding: 10px 12px;
    border: 1px solid color-mix(in srgb, var(--feature-accent) 18%, white);
    border-radius: 10px;
    background: var(--feature-soft);
    color: var(--feature-accent);
}

.feature-card-visual > b {
    font-size: 10px;
    font-weight: 900;
}

.feature-document {
    width: 36px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 7px;
    border: 1px solid rgba(45, 125, 143, 0.22);
    border-radius: 6px;
    background: #FFFFFF;
}

.feature-document i,
.feature-reminder i,
.feature-agenda i {
    display: block;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.36;
}

.feature-check {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #DCFCE7;
    color: #15803D;
    font-size: 12px;
    font-weight: 900;
}

.feature-reminder {
    width: 62px;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 8px;
    background: #FFFBEB;
    box-shadow: 0 5px 12px rgba(146, 64, 14, 0.07);
}

.feature-card-referral .feature-card-visual > b {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #FFFFFF;
}

.feature-avatar {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    margin-right: -13px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    background: #D9F4EC;
    font-size: 8px;
    font-weight: 900;
}

.feature-card-outreach .feature-card-visual > b {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 999px;
    background: #FFFFFF;
}

.feature-calendar {
    width: 38px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid #C7D2FE;
    border-radius: 7px;
    background: #FFFFFF;
}

.feature-calendar b {
    font-size: 13px;
}

.feature-calendar i {
    display: none;
}

.feature-agenda {
    flex: 1;
    display: grid;
    gap: 6px;
}

.feature-agenda i {
    height: 5px;
    background: #818CF8;
}

@media (max-width: 1050px) {
    .card-grid.four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    gap: 40px;
    align-items: center;
}

.text-link {
    color: var(--marketing-accent);
    font-weight: 800;
}

.appointment-panel,
.values-panel,
.contact-panel,
.demo-card,
.demo-form {
    padding: 26px;
}

.appointment-panel > .appointment-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--marketing-border);
}

.appointment-panel > .appointment-row:last-child {
    border-bottom: 0;
}

.lifecycle-dashboard {
    padding: 22px;
    border: 1px solid #DDE4EE;
    border-radius: 14px;
    background: linear-gradient(145deg, #FFFFFF 0%, #F7F9FC 100%);
    box-shadow: 0 18px 42px rgba(15, 27, 46, 0.09);
}

.lifecycle-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--marketing-border);
}

.lifecycle-dashboard-header span,
.lifecycle-dashboard-header strong {
    display: block;
}

.lifecycle-dashboard-header span {
    color: var(--marketing-accent);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.lifecycle-dashboard-header strong {
    margin-top: 3px;
    color: var(--marketing-primary);
    font-size: 15px;
    font-weight: 900;
}

.lifecycle-dashboard-header > b {
    padding: 5px 9px;
    border-radius: 999px;
    background: #ECFDF5;
    color: #047857;
    font-size: 9px;
    font-weight: 900;
}

.lifecycle-stage-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    margin: 18px 0;
}

.lifecycle-stage-track::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 13px;
    right: 9%;
    left: 9%;
    height: 2px;
    background: #DCE3EC;
}

.lifecycle-stage-track div {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 6px;
    text-align: center;
}

.lifecycle-stage-track div > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 2px solid #D8E0E9;
    border-radius: 50%;
    background: #FFFFFF;
    color: #94A3B8;
    font-size: 9px;
    font-weight: 900;
}

.lifecycle-stage-track .is-complete > span {
    border-color: #99E1CB;
    background: #E9F9F4;
    color: #0F9F83;
}

.lifecycle-stage-track .is-current > span {
    border-color: #A5B4FC;
    background: #EEF2FF;
    color: #4F46E5;
    box-shadow: 0 0 0 4px rgba(199, 210, 254, 0.45);
}

.lifecycle-stage-track small {
    color: var(--marketing-muted);
    font-size: 8px;
    font-weight: 800;
    line-height: 1.15;
}

.lifecycle-assignment-list {
    display: grid;
    gap: 7px;
}

.lifecycle-assignment-row {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 8px 9px;
    border: 1px solid rgba(15, 27, 46, 0.08);
    border-radius: 9px;
    background: #FFFFFF;
}

.lifecycle-record-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #EEF2FF;
    color: #4F46E5;
    font-size: 8px;
    font-weight: 900;
}

.lifecycle-assignment-row strong,
.lifecycle-assignment-row small {
    display: block;
}

.lifecycle-assignment-row strong {
    color: var(--marketing-primary);
    font-size: 11px;
    font-weight: 850;
}

.lifecycle-assignment-row small {
    margin-top: 2px;
    color: var(--marketing-muted);
    font-size: 9px;
}

.lifecycle-status {
    padding: 4px 7px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    white-space: nowrap;
}

.lifecycle-status.po-received {
    background: #E9F9F4;
    color: #0F766E;
}

.lifecycle-status.staffed {
    background: #ECFDF5;
    color: #047857;
}

.lifecycle-status.billing {
    background: #EEF2FF;
    color: #4F46E5;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.pill.warning {
    background: #FFFBEB;
    color: #92400E;
}

.pill.success {
    background: #ECFDF5;
    color: #047857;
}

.pill.neutral {
    background: var(--marketing-primary-soft);
    color: var(--marketing-primary);
}

.feature-list {
    display: grid;
    gap: 22px;
}

.feature-detail {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
    gap: 28px;
    align-items: center;
    padding: 30px;
    border: 1px solid var(--marketing-border);
    border-radius: 8px;
    background: #FFFFFF;
}

.feature-detail.reverse {
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 0.92fr);
}

.feature-detail.reverse > div:first-child {
    order: 2;
}

.feature-detail img {
    width: min(240px, 100%);
    justify-self: center;
}

.mini-table,
.calendar-preview,
.search-panel,
.directory-stack,
.decision-panel,
.settings-grid {
    padding: 20px;
    box-shadow: none;
}

.mini-table {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    color: var(--marketing-primary);
}

.mini-table span {
    color: var(--marketing-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.mini-table em {
    color: var(--marketing-accent);
    font-style: normal;
    font-weight: 750;
}

.calendar-preview,
.settings-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.calendar-preview span {
    color: var(--marketing-muted);
    font-size: 12px;
    font-weight: 750;
    text-align: center;
}

.calendar-preview b {
    aspect-ratio: 1;
    border-radius: 8px;
    background: var(--marketing-primary-soft);
}

.calendar-preview b.filled {
    background: var(--marketing-accent);
}

.calendar-preview b.alt {
    background: var(--marketing-gold);
}

.search-panel,
.directory-stack,
.values-panel,
.contact-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-panel span,
.directory-stack span,
.values-panel span,
.contact-checklist span,
.settings-grid span {
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--marketing-primary-soft);
    color: var(--marketing-primary);
    font-size: 13px;
    font-weight: 800;
}

.decision-panel {
    display: grid;
    gap: 12px;
}

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

.settings-grid span {
    border-radius: 8px;
    text-align: center;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 70px;
    padding: 34px;
    border-radius: 8px;
    background: var(--marketing-primary);
}

.cta-band h2 {
    color: #FFFFFF;
}

.cta-button {
    flex: 0 0 auto;
    border-color: rgba(255, 255, 255, 0.72);
    background: #FFFFFF;
    color: var(--marketing-primary);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.cta-button:hover {
    background: #F3F6FA;
    color: var(--marketing-primary);
    box-shadow: 0 15px 32px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.cta-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

.about-page-hero {
    padding-top: 68px;
    padding-bottom: 44px;
}

.about-page-hero > p:last-child {
    max-width: 820px;
    margin: 22px auto 0;
}

.about-operations-section {
    padding-top: 44px;
    padding-bottom: 54px;
}

.operations-layer-card {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--marketing-border);
    border-radius: 12px;
    background: linear-gradient(145deg, #FFFFFF, #F7F9FC);
    box-shadow: 0 16px 36px rgba(15, 27, 46, 0.09);
}

.operations-layer-header {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--marketing-border);
}

.operations-layer-header span,
.operations-layer-header strong {
    display: block;
}

.operations-layer-header span {
    margin-top: 4px;
    color: var(--marketing-accent);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.operations-layer-header strong {
    color: var(--marketing-primary);
    font-size: 15px;
}

.operations-flow {
    display: grid;
    gap: 7px;
    padding: 16px 0;
}

.operations-node {
    --node-accent: var(--marketing-accent);
    --node-soft: var(--marketing-accent-soft);
    position: relative;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid rgba(15, 27, 46, 0.08);
    border-radius: 9px;
    background: #FFFFFF;
}

.operations-node:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: -8px;
    left: 25px;
    width: 2px;
    height: 8px;
    background: color-mix(in srgb, var(--node-accent) 30%, #DDE4EE);
}

.operations-node b {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--node-accent) 20%, transparent);
    border-radius: 9px;
    background: var(--node-soft);
    color: var(--node-accent);
    font-size: 9px;
}

.operations-node strong {
    color: var(--marketing-primary);
    font-size: 11px;
    line-height: 1.25;
}

.operations-node-referral { --node-accent: #B45309; --node-soft: #FFFBEB; }
.operations-node-outreach { --node-accent: #0F766E; --node-soft: #ECFDF5; }
.operations-node-tracking { --node-accent: #4F46E5; --node-soft: #EEF2FF; }
.operations-node-billing { --node-accent: #7C3AED; --node-soft: #F5F3FF; }

.operations-integrations {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    padding-top: 14px;
    border-top: 1px solid var(--marketing-border);
}

.operations-integrations span {
    min-width: 0;
    padding: 8px 5px;
    border: 1px solid rgba(15, 27, 46, 0.07);
    border-radius: 7px;
    background: #FFFFFF;
    color: var(--marketing-primary);
    font-size: 9px;
    font-weight: 750;
    line-height: 1.25;
    text-align: center;
}

.about-approach-section {
    padding-top: 54px;
    padding-bottom: 48px;
}

.about-approach-card {
    min-height: 280px;
}

.approach-visual {
    height: 92px;
    margin-bottom: 22px;
    padding: 11px;
    border: 1px solid var(--approach-border);
    border-radius: 10px;
    background: var(--approach-background);
    overflow: hidden;
}

.approach-queue {
    --approach-border: rgba(15, 118, 110, 0.15);
    --approach-background: #F0FDFA;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.approach-queue div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    min-width: 0;
    padding: 6px 7px;
    border: 1px solid rgba(15, 118, 110, 0.1);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.82);
}

.approach-queue span,
.approach-queue b {
    font-size: 8px;
    font-weight: 850;
}

.approach-queue span { color: var(--marketing-primary); }
.approach-queue b { color: #0F766E; }

.approach-settings {
    --approach-border: rgba(79, 70, 229, 0.14);
    --approach-background: #F5F3FF;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 6px;
}

.approach-settings span {
    display: grid;
    justify-items: center;
    gap: 5px;
    min-width: 0;
    text-align: center;
}

.approach-settings b {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(79, 70, 229, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    color: #4F46E5;
    font-size: 8px;
}

.approach-settings small {
    color: var(--marketing-primary);
    font-size: 7px;
    font-weight: 800;
}

.approach-followthrough {
    --approach-border: rgba(217, 119, 6, 0.15);
    --approach-background: #FFFBEB;
    display: grid;
    align-content: center;
    gap: 5px;
}

.approach-followthrough div {
    display: grid;
    grid-template-columns: 23px 1fr;
    align-items: center;
    gap: 8px;
    color: var(--marketing-primary);
    font-size: 8px;
    font-weight: 800;
}

.approach-followthrough b {
    display: grid;
    width: 23px;
    height: 19px;
    place-items: center;
    border-radius: 6px;
    background: #FEF3C7;
    color: #B45309;
    font-size: 8px;
}

.approach-followthrough .is-complete b {
    background: #DCFCE7;
    color: #15803D;
}

.about-approach-card p {
    margin-bottom: 0;
}

.about-cta {
    margin-top: 0;
    margin-bottom: 54px;
    padding: 27px 30px;
}

.about-cta h2 {
    font-size: clamp(26px, 3.2vw, 38px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
}

.price-placeholder {
    margin: 20px 0;
    padding: 18px;
    border-radius: 8px;
    background: var(--marketing-primary-soft);
    color: var(--marketing-primary);
    font-size: 22px;
    font-weight: 800;
}

.pricing-card ul,
.demo-card ul {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.pricing-card li,
.demo-card li {
    color: var(--marketing-muted);
    line-height: 1.5;
}

.pricing-card .btn {
    margin-top: auto;
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.5fr);
    gap: 32px;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(340px, 0.7fr);
    gap: 24px;
    align-items: stretch;
}

.demo-form {
    display: grid;
    gap: 8px;
    padding: 14px 20px 16px;
}

.demo-card {
    padding: 24px 26px;
}

.demo-card h2 {
    margin-bottom: 12px;
    color: var(--marketing-primary);
    font-size: 24px;
    font-weight: 850;
    line-height: 1.15;
}

.demo-card p {
    margin: 0;
    color: var(--marketing-muted);
    font-size: 15px;
    font-weight: 550;
    line-height: 1.7;
}

.contact-panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px;
}

.contact-workflow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 42px;
    color: var(--marketing-primary);
    font-size: 13px;
    font-weight: 850;
}

.contact-workflow span {
    position: relative;
    white-space: nowrap;
}

.contact-workflow span + span {
    padding-left: 22px;
}

.contact-workflow span + span::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--marketing-accent);
    font-weight: 750;
}

.contact-panel-note {
    margin: 28px 0 0;
    padding-left: 14px;
    border-left: 3px solid rgba(45, 125, 143, 0.32);
    color: var(--marketing-muted);
    font-size: 13px;
    font-weight: 550;
    line-height: 1.65;
}

.feature-mini {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--marketing-border);
    border-radius: 12px;
    background: linear-gradient(145deg, #FFFFFF, #F7F9FC);
    box-shadow: 0 12px 28px rgba(15, 27, 46, 0.07);
}

.po-extraction-mini {
    display: grid;
    grid-template-columns: minmax(100px, 0.8fr) auto minmax(130px, 1fr);
    align-items: center;
    gap: 22px;
    padding: 28px 26px;
}

.mini-upload { display: grid; justify-items: center; gap: 7px; text-align: center; }
.mini-upload img { width: 76px; height: 76px; object-fit: contain; background: transparent; box-shadow: none; }
.mini-upload strong, .mini-upload small { font-size: 11px; }
.mini-upload small { color: var(--marketing-muted); }
.mini-arrow { color: var(--marketing-accent); font-size: 22px; font-weight: 900; }
.extracted-fields { display: grid; gap: 9px; }
.extracted-fields span { display: flex; justify-content: space-between; padding: 8px 10px; border-radius: 7px; background: #F0FDF4; color: var(--marketing-primary); font-size: 10px; font-weight: 800; }
.extracted-fields b { color: var(--marketing-green); }

.automation-timeline { display: grid; gap: 0; }
.automation-timeline > div { position: relative; display: grid; grid-template-columns: 28px 1fr; gap: 10px; padding: 8px 0; }
.automation-timeline > div:not(:last-child)::after { content: ""; position: absolute; top: 36px; bottom: -8px; left: 13px; width: 2px; background: #DDE4EE; }
.automation-timeline b, .approval-flow b { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--marketing-accent-soft); color: var(--marketing-accent); font-size: 10px; }
.automation-timeline strong, .automation-timeline small { display: block; }
.automation-timeline strong { font-size: 12px; }
.automation-timeline small { margin-top: 2px; color: var(--marketing-muted); font-size: 10px; }
.automation-timeline .is-complete b, .approval-flow .is-complete b { background: #DCFCE7; color: #15803D; }

.lifecycle-heading, .appointment-summary { display: flex; justify-content: space-between; gap: 10px; font-size: 11px; }
.lifecycle-heading span { color: var(--marketing-muted); font-weight: 800; text-transform: uppercase; }
.lifecycle-steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin: 24px 0; }
.lifecycle-steps::before { content: ""; position: absolute; top: 13px; right: 10%; left: 10%; height: 2px; background: #DDE4EE; }
.lifecycle-steps span { z-index: 1; display: grid; justify-items: center; gap: 7px; text-align: center; }
.lifecycle-steps b { display: grid; width: 28px; height: 28px; place-items: center; border: 2px solid #D8E0E9; border-radius: 50%; background: #FFFFFF; color: #94A3B8; font-size: 9px; }
.lifecycle-steps small { color: var(--marketing-muted); font-size: 8px; font-weight: 800; }
.lifecycle-steps .done b { border-color: #99E1CB; background: #E9F9F4; color: #0F9F83; }
.lifecycle-steps .current b { border-color: #A5B4FC; background: #EEF2FF; color: #4F46E5; box-shadow: 0 0 0 4px rgba(199, 210, 254, 0.4); }
.appointment-summary { padding: 10px 12px; border-radius: 8px; background: var(--marketing-primary-soft); }
.appointment-summary strong { color: #047857; }

.matching-mini { display: grid; gap: 14px; }
.matching-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.matching-filters span { padding: 6px 8px; border-radius: 999px; background: var(--marketing-accent-soft); color: var(--marketing-accent); font-size: 9px; font-weight: 850; }
.matching-results { display: grid; gap: 7px; }
.matching-results div { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 9px; padding: 8px; border: 1px solid var(--marketing-border); border-radius: 8px; background: #FFFFFF; }
.matching-results b { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: #E9F9F4; color: #0F766E; font-size: 9px; }
.matching-results strong, .matching-results span { font-size: 11px; }
.matching-results span { color: var(--marketing-muted); font-weight: 800; }

.approval-flow { gap: 7px; }
.approval-flow > div { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 10px; padding: 8px 10px; border: 1px solid var(--marketing-border); border-radius: 8px; background: #FFFFFF; color: var(--marketing-primary); font-size: 11px; font-weight: 850; }

.directory-mini {
    padding: 0;
    overflow: hidden;
}

.directory-mini-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 17px;
    border-bottom: 1px solid var(--marketing-border);
    background: #F8FAFC;
}

.directory-mini-title {
    display: block;
    color: var(--marketing-primary);
    font-size: 14px;
    font-weight: 850;
}

.directory-mini-count {
    display: block;
    color: var(--marketing-muted);
    font-size: 9px;
    font-weight: 750;
    white-space: nowrap;
}

.directory-mini-list {
    padding: 5px 16px;
    background: #FFFFFF;
}

.directory-mini-row {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(15, 27, 46, 0.07);
}

.directory-mini-row:last-child {
    border-bottom: 0;
}

.directory-mini-badge {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 8px;
    background: var(--marketing-accent-soft);
    color: var(--marketing-accent);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.03em;
}

.directory-mini-copy {
    display: block;
    min-width: 0;
}

.directory-mini-copy strong,
.directory-mini-copy small {
    display: block;
}

.directory-mini-copy strong {
    color: var(--marketing-primary);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
}

.directory-mini-copy small {
    margin-top: 3px;
    color: var(--marketing-muted);
    font-size: 9px;
    line-height: 1.35;
}

.form-message-region {
    display: flex;
    align-items: stretch;
}

.form-message-region.has-message {
    min-height: 58px;
}

.form-message {
    width: 100%;
    margin: 0;
    padding: 6px 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.45;
}

.form-message p {
    margin: 0;
}

.form-message p + p {
    margin-top: 4px;
}

.form-success {
    border-color: rgba(22, 163, 74, 0.22);
    background: #F0FDF4;
    color: #166534;
}

.form-error {
    border-color: rgba(225, 29, 72, 0.2);
    background: #FFF1F2;
    color: #9F1239;
}

.demo-form label {
    display: grid;
    gap: 5px;
    color: var(--marketing-primary);
    font-size: 13px;
    font-weight: 800;
}

.demo-form input,
.demo-form textarea {
    width: 100%;
    border: 1px solid var(--marketing-border);
    border-radius: 8px;
    padding: 9px 11px;
    color: var(--marketing-text);
    font: inherit;
}

.demo-form textarea {
    height: 84px;
    min-height: 84px;
    max-height: 160px;
    resize: vertical;
}

.demo-form > .btn {
    width: 100%;
    margin-top: 3px;
}

.demo-form input:focus,
.demo-form textarea:focus {
    outline: 3px solid rgba(45, 125, 143, 0.16);
    border-color: rgba(45, 125, 143, 0.4);
}

.form-note {
    margin: -2px 0 0;
    color: var(--marketing-muted);
    font-size: 12px;
    line-height: 1.5;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 0;
    border-top: 1px solid var(--marketing-border);
    color: var(--marketing-muted);
    font-size: 14px;
}

.site-footer strong,
.site-footer span {
    display: block;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-weight: 750;
}

@media (max-width: 920px) {
    .site-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .site-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero-section,
    .split-section,
    .feature-detail,
    .feature-detail.reverse,
    .contact-hero,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-detail.reverse > div:first-child {
        order: 0;
    }

    .card-grid.three,
    .card-grid.four,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-page-hero,
    .about-operations-section,
    .about-approach-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

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

    .about-approach-card {
        min-height: auto;
    }

    .site-header,
    .site-footer,
    .hero-section,
    .section,
    .split-section,
    .page-hero,
    .cta-band {
        width: min(100% - 28px, 1160px);
    }

    .hero-section {
        min-height: auto;
        padding-top: 32px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .hero-copy h1 {
        font-size: 55px;
    }

    .hero-copy h1.hero-title-compact {
        font-size: 49.5px;
    }

    .hero-showcase-carousel {
        justify-self: stretch;
        max-width: none;
    }

    .hero-showcase-track {
        min-height: 940px;
    }

    .hero-showcase-arrow {
        display: none;
    }

    .hero-showcase-controls {
        flex-wrap: wrap;
    }

    .po-showcase-card {
        justify-self: stretch;
    }

    .po-showcase-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .po-workflow {
        grid-template-columns: 1fr;
    }

    .po-flow-connector {
        justify-self: center;
    }

    .po-flow-connector b {
        transform: rotate(90deg);
    }

    .po-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .po-process-step {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .po-process-arrow {
        display: none;
    }

    .ref-showcase-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .outreach-showcase-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .appointment-showcase-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

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

    .outreach-send-action {
        align-items: flex-start;
        flex-direction: column;
    }

    .ref-card-body {
        grid-template-columns: 1fr;
    }

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

    .po-gator-workflow {
        grid-template-columns: 1fr;
    }

    .po-gator-flow {
        justify-self: center;
    }

    .po-gator-flow::before {
        transform: rotate(90deg);
    }

    .po-gator-mini-card {
        min-height: auto;
    }

    .cta-band,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}
