:root {
    --orange:#f97316;
    --orange-dark:#ff6600;
    --orange-soft:#fff7ed;
    --blue:#1769e0;
    --blue-dark:#0d4fb3;
    --navy:#0b2e59;
    --ink:#20242c;
    --text:#4b5563;
    --muted:#6b7280;
    --line:#e5e7eb;
    --soft:#f8fafc;
    --white:#fff;
    --radius:20px;
    --shadow:0 18px 55px rgba(20,40,70,.10);
}
* {
    box-sizing:border-box;
}
html {
    scroll-behavior:smooth;
}
body {
    margin:0;
    font-family:Inter,Arial,Helvetica,sans-serif;
    color:var(--text);
    line-height:1.65;
    background:#fff;
}
a {
    color:inherit;
}
h1,h2,h3,h4 {
    color:var(--ink);
    line-height:1.12;
    margin-top:0;
}
h1 {
    font-size:clamp(46px,6vw,82px);
    letter-spacing:-.05em;
    margin-bottom:24px;
}
h2 {
    font-size:clamp(32px,4vw,52px);
    letter-spacing:-.035em;
}
h3 {
    font-size:24px;
}
p {
    margin-top:0;
}
.container {
    width:min(1160px,calc(100% - 40px));
    margin:auto;
}
.site-header {
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(229,231,235,.9);
}
.site-header a.active {    
	font-weight: 900;
    border-bottom:1px solid rgba(229,231,235,.9);
}
.nav-wrap {
    height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.brand {
    display:inline-flex;
    gap:10px;
    align-items:center;
    text-decoration:none;
    font-weight:850;
    color:var(--ink);
    font-size:20px;
}
.brand-mark {
    display:grid;
    place-items:center;
    width:34px;
    height:34px;
    border-radius:10px;
    background:linear-gradient(135deg,var(--blue),var(--blue-dark));
    color:#fff;
    font-weight:900;
}
.site-nav {
    display:flex;
    align-items:center;
    gap:28px;
}
.site-nav>a {
    text-decoration:none;
    font-weight:650;
}
.nav-toggle {
    display:none;
    border:0;
    background:none;
    font-size:26px;
}
.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:13px 25px;
    border-radius:11px;
    border:2px solid transparent;
    font-weight:800;
    text-decoration:none;
    cursor:pointer;
}
.btn-small {
    min-height:44px;
    padding:9px 18px;
}
.btn-primary {
    background:var(--blue);
    color:#fff;
    box-shadow:0 10px 24px rgba(23,105,224,.24);
}
.btn-secondary {
    background:#fff;
    border-color:#cfd6df;
    color:var(--ink);
}
.btn-white {
    background:#fff;
    color:var(--blue-dark);
}
.btn-outline-light {
    border-color:rgba(255,255,255,.6);
    color:#fff;
}
.full {
    width:100%;
}
.hero {
    overflow:hidden;
}
.hero-home {
    padding:90px 0;
    background:radial-gradient(circle at 18% 30%,rgba(255,190,120,.35),transparent 37%),linear-gradient(120deg,#fff 50%,#f4f8ff);
}
.hero-grid {
    display:grid;
    grid-template-columns:1.03fr .97fr;
    gap:70px;
    align-items:center;
}
.hero-simple {
    padding:100px 0;
    background:radial-gradient(circle at 50% 35%,rgba(255,196,135,.38),rgba(255,247,237,.12) 48%,#fff 77%);
}
.hero-simple-60 {
    padding:50px 0;
    background:radial-gradient(circle at 50% 40%,rgba(255,196,135,.38),rgba(255,247,237,.12) 48%,#fff 77%);
}
.center {
    text-align:center;
}
.narrow {
    max-width:800px;
    margin-left:auto;
    margin-right:auto;
}
.lead {
    font-size:20px;
    color:#46505d;
}
.eyebrow {
    display:inline-block;
    margin-bottom:15px;
    color:var(--orange-dark);
    font-size:15px;
    font-weight:900;
    letter-spacing:.16em;
}
.eyebrow.light {
    color:#fed7aa;
}
.actions {
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:30px;
}
.center-actions {
    justify-content:center;
}
.trust-row {
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:25px;
    font-size:14px;
    color:#64748b;
}
.product-mock,.ui-panel {
    background:#fff;
    border:1px solid #dbe3ed;
    border-radius:24px;
    box-shadow:var(--shadow);
    padding:22px;
}
.mock-top {
    font-weight:850;
    color:var(--ink);
    padding-bottom:15px;
    border-bottom:1px solid var(--line);
}
.mock-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    margin:18px 0;
}
.metric {
    padding:14px;
    border:1px solid var(--line);
    border-radius:12px;
}
.metric b {
    display:block;
    font-size:23px;
    color:var(--ink);
}
.metric span {
    font-size:12px;
}
.chart {
    height:160px;
    border-radius:15px;
    background:linear-gradient(to top,rgba(23,105,224,.08),transparent),linear-gradient(135deg,transparent 47%,var(--blue) 48% 50%,transparent 51%) center/55px 45px;
}
.list-lines {
    display:grid;
    gap:9px;
    margin-top:15px;
}
.list-lines span {
    height:11px;
    border-radius:99px;
    background:#edf2f7;
}
.list-lines span:nth-child(2) {
    width:80%;
}
.list-lines span:nth-child(3) {
    width:60%;
}
.compact {
    max-width:540px;
}
.section {
    padding:100px 0;
}
.section-60 {
    padding:60px 0;
}
.soft {
    background:var(--soft);
}
.section-head {
    text-align:center;
    max-width:820px;
    margin-bottom:50px;
}
.section-head-w {
    text-align:center;
    max-width:1000px;
    margin-bottom:50px;
}
.card-grid {
    display:grid;
    gap:24px;
}
.card-grid.three {
    grid-template-columns:repeat(3,1fr);
}
.card-grid.two {
    grid-template-columns:repeat(2,1fr);
}
.card {
    padding:34px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:#fff;
    box-shadow:0 8px 24px rgba(35,45,60,.04);
}
.icon,.industry-icon {
    display:grid;
    place-items:center;
    width:54px;
    height:54px;
    border-radius:15px;
    background:var(--orange-soft);
    color:var(--orange-dark);
    font-weight:900;
    margin-bottom:26px;
}
.stats {
    padding:65px 0;
    background:#122b46;
    color:#fff;
}
.stats-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
}
.stats-grid>div {
    text-align:center;
    padding:15px;
    border-right:1px solid rgba(255,255,255,.15);
}
.stats-grid>div:last-child {
    border-right:0;
}
.stats b {
    display:block;
    font-size:36px;
    color:#fdba74;
}
.stats span {
    color:rgba(255,255,255,.72);
}
.split {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:75px;
    align-items:center;
}
.image-placeholder {
    min-height:430px;
    border-radius:28px;
    background:linear-gradient(135deg,#e7eef8,#fff1e5);
    display:grid;
    place-items:center;
    box-shadow:var(--shadow);
    color:#64748b;
    font-weight:800;
}
.image.team {
    width: 450px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(31, 41, 55, 0.12);
}

.image.team img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}
.image.field {
    width: 542px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(31, 41, 55, 0.12);
}

.image.field img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}
.check-list {
    list-style:none;
    padding:0;
    margin:25px 0;
}
.check-list li {
    padding:8px 0;
}
.check-list li:before {
    content:'✓';
    color:var(--orange);
    font-weight:900;
    margin-right:10px;
}
.text-link {
    color:var(--blue);
    font-weight:800;
    text-decoration:none;
}
.cta {
    padding:75px 0;
    background:linear-gradient(120deg,var(--blue-dark),var(--blue));
    color:#fff;
}
.cta h2 {
    color:#fff;
    margin-bottom:0;
}
.cta-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}
.mission-card {
    padding:50px;
    border-radius:28px;
    color:#fff;
    min-height:360px;
}
.mission-card h2 {
    color:#fff;
}
.mission-card.blue {
    background:var(--blue);
}
.mission-card.orange {
    background:var(--orange-dark);
}
.feature-list {
    display:grid;
    gap:100px;
}
.feature-row {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}
.feature-row.reverse>div:first-child {
    order:2;
}
.feature-row.reverse>div:last-child {
    order:1;
}
.pill {
    display:inline-block;
    background:#dbeafe;
    color:var(--blue-dark);
    font-weight:800;
    padding:5px 10px;
    border-radius:99px;
}
.mini-fields,.asset-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:18px;
}
.mini-fields span,.asset-grid span {
    background:#f8fafc;
    padding:12px;
    border-radius:10px;
    font-size:13px;
}
.form {
    display:grid;
    gap:12px;
}
.form input,.form select,.form textarea,.contact-form input,.contact-form select,.contact-form textarea,.signup-form input {
    width:100%;
    padding:14px;
    border:1px solid #d4d9e0;
    border-radius:10px;
    font:inherit;
}
.form button {
    padding:13px;
    background:var(--blue);
    color:#fff;
    border:0;
    border-radius:10px;
    font-weight:800;
}
.industry-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}
.industry-card {
    padding:30px;
    border:1px solid var(--line);
    border-radius:20px;
    background:#fff;
}
.industry-card a {
    color:var(--blue);
    font-weight:800;
    text-decoration:none;
}
/* ==================================================
   CMMS ADD IN (/* CMMS additions for the home page */)
================================================== */

        
.cmms-highlight {
	padding: 88px 0;
	background: #f7fafc;
}

.cmms-highlight .section-head {
	max-width: 760px;
	margin-bottom: 42px;
}

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

.cmms-card {
	padding: 28px;
	background: #fff;
	border: 1px solid #dfe7ee;
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(15, 45, 70, 0.07);
}

.cmms-card .cmms-icon {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	margin-bottom: 18px;
	border-radius: 12px;
	background: #eaf5ff;
	color: #0877c9;
	font-size: 22px;
	font-weight: 700;
}

.cmms-card h3 {
	margin: 0 0 10px;
}

.cmms-card p {
	margin: 0;
}

.cmms-dashboard-section {
	padding: 88px 0;
}

.cmms-dashboard-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
	align-items: center;
	gap: 54px;
}

.cmms-dashboard-image {
	margin: 0;
	padding: 12px;
	background: #fff;
	border: 1px solid #dbe4eb;
	border-radius: 20px;
	box-shadow: 0 24px 60px rgba(8, 41, 68, 0.14);
}

.cmms-dashboard-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

.cmms-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	padding: 8px 12px;
	border-radius: 999px;
	background: #eaf5ff;
	color: #086aa9;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.cmms-list {
	list-style: none;
	padding: 0;
	margin: 26px 0 30px;
	display: grid;
	gap: 14px;
}

.cmms-list li {
	position: relative;
	padding-left: 30px;
}

.cmms-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: #0a8f62;
	font-weight: 800;
}

.hero-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}


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

	.cmms-dashboard-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.cmms-grid {
		grid-template-columns: 1fr;
	}

	.cmms-highlight,
	.cmms-dashboard-section {
		padding: 64px 0;
	}
}


/* ==================================================
   BILLING SLIDER
================================================== */

.billing-toggle {
    position: relative;
    display: grid;
    width: min(100%, 390px);
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin: 30px auto 0;
    padding: 6px;
    overflow: hidden;
    background: #f1f3f7;
    border: 1px solid #dfe3eb;
    border-radius: 999px;
    box-shadow:
        inset 0 1px 3px rgba(23, 32, 51, 0.08),
        0 8px 24px rgba(23, 32, 51, 0.08);
}

.billing-slider {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    width: calc(50% - 6px);
    background: #ffffff;
    border: 1px solid rgba(23, 32, 51, 0.06);
    border-radius: 999px;
    box-shadow:
        0 5px 14px rgba(23, 32, 51, 0.12),
        0 1px 3px rgba(23, 32, 51, 0.08);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.25s ease;
}

.billing-toggle.monthly-selected .billing-slider {
    transform: translateX(100%);
}

.billing-toggle-option {
    position: relative;
    z-index: 2;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    color: #727987;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 750;
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition:
        color 0.25s ease,
        transform 0.2s ease;
}

.billing-toggle-option:hover {
    color: #172033;
}

.billing-toggle-option:active {
    transform: scale(0.98);
}

.billing-toggle-option.active {
    color: #172033;
}

.billing-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    color: #9b4316;
    font-size: 0.68rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: nowrap;
    background: #ffe1d0;
    border-radius: 999px;
}

.billing-toggle-option:focus-visible {
    outline: 3px solid rgba(235, 116, 47, 0.35);
    outline-offset: -3px;
}


/* Annual selected appearance */

.billing-toggle.monthly-selected {
    background: #fff0e7;
    border-color: #f4c3a7;
}

.billing-toggle.monthly-selected .billing-slider {
    background: #ffffff;
}


/* Mobile */

@media (max-width: 480px) {

    .billing-toggle {
        width: 100%;
        max-width: 350px;
    }

    .billing-toggle-option {
        min-height: 46px;
        padding: 9px 8px;
        font-size: 0.88rem;
    }

    .billing-discount {
        padding: 4px 6px;
        font-size: 0.61rem;
    }
}
.billing-toggle b {
    color:var(--blue);
}
.pricing-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    align-items:stretch;
}
.price-card {
    position:relative;
    padding:38px;
    border:1px solid var(--line);
    border-radius:24px;
    background:#fff;
}
.price-card.featured {
    border:2px solid var(--blue);
    transform:translateY(-10px);
    box-shadow:var(--shadow);
}
.badge {
    position:absolute;
    top:-15px;
    right:20px;
    background:var(--orange);
    color:#fff;
    padding:6px 11px;
    border-radius:99px;
    font-size:12px;
    font-weight:900;
}
.plan {
    font-weight:900;
    color:var(--blue);
}
.price-card h2 {
    font-size:52px;
    margin:14px 0 0;
}
.price-card ul {
    padding-left:20px;
    margin:25px 0;
}
.fine-print {
    text-align:center;
    margin-top:25px;
    color:#7c8591;
    font-size:13px;
}
.contact-grid {
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:70px;
}
.contact-cards {
    display:grid;
    gap:12px;
    margin-top:30px;
}
.contact-cards>div {
    padding:18px;
    border:1px solid var(--line);
    border-radius:14px;
    display:flex;
    justify-content:space-between;
}
.contact-form {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    padding:32px;
    border:1px solid var(--line);
    border-radius:24px;
    box-shadow:var(--shadow);
}
.contact-form label,.signup-form label {
    display:grid;
    gap:7px;
    font-weight:750;
    color:var(--ink);
}
.wide {
    grid-column:1/-1;
}
.form-note {
    font-size:12px;
    color:#7b8490;
}
.signup-page {
    min-height:calc(100vh - 76px);
    display:grid;
    grid-template-columns:1fr 1fr;
}
.signup-panel {
    padding:80px max(40px,8vw);
    background:radial-gradient(circle at 30% 25%,rgba(255,190,120,.45),transparent 40%),#fff7ed;
}
.signup-panel .brand {
    margin-bottom:90px;
}
.signup-form {
    align-self:center;
    justify-self:center;
    width:min(470px,calc(100% - 40px));
    display:grid;
    gap:18px;
    padding:40px;
    border:1px solid var(--line);
    border-radius:24px;
    box-shadow:var(--shadow);
}
.site-footer {
    padding:70px 0 20px;
    background:#0d2238;
    color:rgba(255,255,255,.72);
}
.footer-grid {
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.4fr;
    gap:40px;
}
.brand-light {
    color:#fff;
}
.site-footer h4 {
    color:#fff;
}
.site-footer a {
    display:block;
    text-decoration:none;
    margin:8px 0;
}
.site-footer .btn {
    display:inline-flex;
}
.footer-bottom {
    padding-top:30px;
    margin-top:35px;
    border-top:1px solid rgba(255,255,255,.12);
    font-size:13px;
}
@media(max-width:900px) {
    .nav-toggle {
        display:block;
    }
    .site-nav {
        display:none;
        position:absolute;
        top:76px;
        left:0;
        right:0;
        background:#fff;
        padding:20px;
        flex-direction:column;
        border-bottom:1px solid var(--line);
    }
    .site-nav.open {
        display:flex;
    }
    .hero-grid,.split,.feature-row,.contact-grid,.signup-page {
        grid-template-columns:1fr;
    }
    .feature-row.reverse>div:first-child,.feature-row.reverse>div:last-child {
        order:initial;
    }
    .card-grid.three,.industry-grid,.pricing-grid {
        grid-template-columns:1fr;
    }
    .card-grid.two {
        grid-template-columns:1fr;
    }
    .stats-grid {
        grid-template-columns:repeat(2,1fr);
    }
    .cta-inner {
        align-items:flex-start;
        flex-direction:column;
    }
    .footer-grid {
        grid-template-columns:1fr 1fr;
    }
    .signup-panel {
        padding:60px 30px;
    }
    .signup-panel .brand {
        margin-bottom:50px;
    }
    .signup-form {
        margin:60px auto;
    }
    .price-card.featured {
        transform:none;
    }
}
@media(max-width:600px) {
    .container {
        width:min(100% - 28px,1160px);
    }
    .section {
        padding:72px 0;
    }
    .hero-home,.hero-simple {
        padding:70px 0;
    }
    .mock-grid {
        grid-template-columns:repeat(2,1fr);
    }
    .stats-grid {
        grid-template-columns:1fr;
    }
    .stats-grid>div {
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.15);
    }
    .footer-grid {
        grid-template-columns:1fr;
    }
    .actions {
        flex-direction:column;
    }
    .actions .btn {
        width:100%;
    }
    .contact-form {
        grid-template-columns:1fr;
    }
    .wide {
        grid-column:auto;
    }
    .mini-fields,.asset-grid {
        grid-template-columns:1fr;
    }
}