.feature-yes,
.feature-no {
    display: inline-flex;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.feature-yes {
    color: var(--brand);
}

.feature-no {
    color: var(--red);
}

.comparison-row > div span {
    display: block;
}

.quote-card {
    align-items: center;
    background: linear-gradient(135deg, #172033 0%, #20304c 48%, #14532d 100%);
    border: 0;
    box-shadow: 0 18px 42px rgba(21, 32, 51, 0.18);
    color: #ffffff;
    display: grid;
    gap: 24px;
    grid-column: 1 / -1;
    grid-template-columns: minmax(280px, 1.25fr) minmax(260px, 0.9fr) auto;
    overflow: hidden;
    padding: clamp(24px, 4vw, 36px);
    position: relative;
}

.quote-card::before {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #ffffff;
    content: "Custom quote";
    font-size: 12px;
    font-weight: 700;
    padding: 7px 12px;
    position: absolute;
    right: 22px;
    top: 20px;
    text-transform: uppercase;
}

.quote-card .eyebrow {
    color: #fbbf24;
    margin-bottom: 8px;
}

.quote-card h3 {
    color: #ffffff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    margin: 0;
    max-width: 620px;
    padding-right: 120px;
}

.quote-card .price {
    display: none;
}

.quote-card > .muted {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    margin: 8px 0 0;
    max-width: 620px;
}

.quote-card .plan-summary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: none;
    color: #ffffff;
    padding: 18px;
}

.quote-card .plan-summary h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 8px;
}

.quote-card .plan-summary p {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 8px;
}

.quote-card .plan-summary p:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.quote-card .plan-summary span {
    color: rgba(255, 255, 255, 0.72);
}

.quote-card .plan-summary strong {
    color: #ffffff;
}

.quote-card .button.primary {
    background: #ffffff;
    border-color: #ffffff;
    color: #172033;
    min-width: 170px;
    width: auto;
}

.quote-card .button.primary:hover {
    text-decoration: none;
}

.quote-form-section {
    max-width: 1180px;
}

.quote-form {
    display: grid;
    gap: 18px;
}

.quote-panel {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 14px;
    padding: clamp(18px, 3vw, 28px);
}

.quote-panel h2 {
    margin: 0;
}

.quote-grid {
    display: grid;
    gap: 14px;
}

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

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

.quote-form label {
    color: #172033;
    display: grid;
    font-weight: 700;
    gap: 7px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    border: 1px solid rgba(15, 23, 42, 0.16);
    border-radius: 8px;
    color: #172033;
    font: inherit;
    min-height: 44px;
    padding: 10px 12px;
    width: 100%;
}

.quote-form textarea {
    min-height: 110px;
    resize: vertical;
}

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

.quote-check-grid label {
    align-items: center;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    display: flex;
    font-weight: 700;
    gap: 10px;
    padding: 10px 12px;
}

.quote-check-grid input {
    min-height: auto;
    width: auto;
}

.quote-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.status {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #14532d;
    font-weight: 700;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.error {
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 980px) {
    .quote-card {
        grid-template-columns: 1fr;
    }

    .quote-card .button.primary {
        width: 100%;
    }

    .quote-grid.two,
    .quote-grid.four,
    .quote-check-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 840px) {
    .comparison-row > div:nth-child(3)::before {
        content: "Connecteam";
    }

    .comparison-row > div:nth-child(4)::before {
        content: "GUARD1";
    }

    .comparison-row > div:nth-child(5)::before {
        content: "THERMS.io";
    }

    .quote-card h3 {
        padding-right: 0;
    }

    .quote-card::before {
        display: inline-flex;
        justify-self: start;
        margin-bottom: 8px;
        position: static;
        width: max-content;
    }
}

@media (max-width: 640px) {
    .quote-grid.two,
    .quote-grid.four,
    .quote-check-grid {
        grid-template-columns: 1fr;
    }

    .quote-actions .button {
        width: 100%;
    }
}

/* Sales homepage v2 */
.site-header {
    padding: 10px clamp(18px, 4vw, 54px);
}

.site-brand img {
    height: 72px;
    width: 72px;
}

.site-brand span {
    font-size: 20px;
}

.site-nav {
    align-items: center;
}

.site-nav a {
    font-size: 14px;
    font-weight: 800;
}

.site-nav .site-phone {
    box-shadow: 0 8px 20px rgba(20, 83, 45, 0.15);
}

.hero.sales-hero {
    background: #08111f;
    color: #ffffff;
    gap: clamp(34px, 5vw, 76px);
    grid-template-columns: minmax(0, 650px) minmax(420px, 560px);
    max-width: none;
    min-height: 740px;
    padding: clamp(86px, 10vw, 134px) max(24px, calc((100vw - 1280px) / 2)) clamp(78px, 8vw, 118px);
    position: relative;
}

.hero.sales-hero::before {
    background-image: url("../images/logo.png");
    background-position: right max(24px, calc((100vw - 1280px) / 2)) center;
    background-repeat: no-repeat;
    background-size: min(42vw, 560px);
    content: "";
    inset: 0;
    opacity: 0.06;
    position: absolute;
}

.hero.sales-hero::after {
    background: linear-gradient(90deg, #b45309 0%, #f7c948 28%, #14532d 100%);
    bottom: 0;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    right: 0;
}

.hero.sales-hero .hero-copy,
.hero.sales-hero .command-board {
    position: relative;
    z-index: 1;
}

.hero.sales-hero h1 {
    color: #ffffff;
    font-size: clamp(46px, 5.6vw, 82px);
    letter-spacing: 0;
    max-width: 720px;
}

.hero.sales-hero .eyebrow {
    color: #f7c948;
}

.hero.sales-hero .hero-text {
    color: rgba(226, 232, 240, 0.88);
    font-size: 20px;
    max-width: 650px;
}

.hero.sales-hero .button.primary {
    background: #f7c948;
    border-color: #f7c948;
    color: #111827;
}

.hero.sales-hero .button.ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    color: #ffffff;
}

.hero.sales-hero .hero-proof span {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
    color: #e5edf7;
}

.command-board {
    background: #0d1626;
    border: 1px solid rgba(226, 232, 240, 0.16);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    color: #ffffff;
    display: grid;
    gap: 16px;
    overflow: hidden;
    padding: 18px;
}

.command-board-top {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.command-brand {
    align-items: center;
    display: flex;
    gap: 12px;
}

.command-brand img {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    height: 70px;
    object-fit: contain;
    width: 70px;
}

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

.command-brand strong {
    font-size: 22px;
}

.command-brand span,
.command-feed span,
.command-footer span,
.command-metrics small {
    color: #94a3b8;
}

.command-live {
    background: #dcfce7;
    border-radius: 999px;
    color: #14532d;
    font-size: 12px;
    font-weight: 900;
    padding: 7px 10px;
    text-transform: uppercase;
}

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

.command-metrics article,
.command-feed article,
.command-footer {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(226, 232, 240, 0.12);
    border-radius: 8px;
    padding: 12px;
}

.command-metrics span,
.command-metrics small {
    display: block;
    font-size: 12px;
    font-weight: 800;
}

.command-metrics strong {
    color: #f7c948;
    display: block;
    font-size: 34px;
    line-height: 1;
    margin: 5px 0;
}

.command-main {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) 180px;
}

.command-map {
    aspect-ratio: 1.18 / 1;
    background:
        linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px),
        linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
        #111c2e;
    background-size: 34px 34px;
    border: 1px solid rgba(226, 232, 240, 0.12);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.command-map::before {
    background: rgba(20, 83, 45, 0.25);
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 999px;
    content: "";
    height: 145px;
    left: 42%;
    position: absolute;
    top: 34%;
    transform: translate(-50%, -50%);
    width: 145px;
}

.map-pin {
    border: 3px solid #ffffff;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
    height: 22px;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 22px;
    z-index: 2;
}

.map-pin.officer {
    background: #22c55e;
}

.map-pin.call {
    background: #ef4444;
    border-radius: 6px;
}

.map-pin.property {
    background: #f7c948;
}

.map-route {
    background: #f7c948;
    height: 4px;
    left: 28%;
    position: absolute;
    top: 57%;
    transform: rotate(-18deg);
    transform-origin: left center;
    width: 43%;
}

.command-feed {
    display: grid;
    gap: 10px;
}

.command-feed strong {
    display: block;
    font-size: 14px;
}

.command-footer {
    background: rgba(20, 83, 45, 0.35);
    border-color: rgba(34, 197, 94, 0.25);
}

.trust-strip,
.company-story,
.sales-band > *,
.guarantee-section,
.parking-sales-section,
.feature-strip,
.app-download-section,
.pricing-section,
.competitor-section > *,
.advantage-section > * {
    max-width: 1280px;
}

.trust-strip {
    margin-top: -44px;
    position: relative;
    z-index: 2;
}

.trust-strip div {
    border-top: 4px solid #14532d;
}

.company-story {
    padding-top: 76px;
}

.guarantee-section {
    background: #111827;
    border-color: #1f2937;
    color: #ffffff;
    grid-template-columns: minmax(0, 1fr) 230px;
    padding: clamp(28px, 4vw, 46px);
}

.guarantee-section .eyebrow {
    color: #f7c948;
}

.guarantee-copy p {
    color: #d1d5db;
}

.guarantee-copy h2 {
    color: #ffffff;
}

.guarantee-section .button.ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.guarantee-art {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 16px;
}

.guarantee-art img {
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    display: block;
    height: auto;
    max-height: 190px;
    max-width: 190px;
    object-fit: contain;
    width: 100%;
}

.sales-band {
    background: #ffffff;
}

.advantage-section {
    background: #e8eef4;
}

@media (max-width: 980px) {
    .hero.sales-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-left: 22px;
        padding-right: 22px;
    }

    .command-board {
        max-width: 620px;
        width: 100%;
    }

    .trust-strip {
        margin-top: 0;
    }

    .guarantee-section {
        grid-template-columns: 1fr;
    }

    .guarantee-art {
        justify-self: start;
        max-width: 230px;
    }
}

@media (max-width: 640px) {
    .site-brand img {
        height: 56px;
        width: 56px;
    }

    .command-metrics,
    .command-main {
        grid-template-columns: 1fr;
    }

    .hero.sales-hero h1 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .hero.sales-hero .hero-actions .button {
        width: 100%;
    }

    .guarantee-art,
    .guarantee-art img {
        max-width: 160px;
    }
}
