:root{
    --royal:#071a44;
    --royal-2:#0c2d6b;
    --royal-3:#154aa3;
    --blue:#2568d8;
    --teal:#13a89e;
    --cyan:#57d6ff;
    --amber:#ffb84d;
    --coral:#f26d5b;
    --ice:#eef4fb;
    --paper:#ffffff;
    --ink:#020b24;
    --ink-soft:#44546a;
    --muted:#6f7d90;
    --line:#d3deeb;
    --shadow:0 26px 70px rgba(7,26,68,.24);
    --soft-shadow:0 16px 38px rgba(7,26,68,.12);
    --radius:8px;
}

.required-marker{
    color:#d92d20;
    margin-left:3px;
    font-weight:800;
    line-height:1;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    min-height:100vh;
    color:var(--ink);
    background:
        linear-gradient(180deg, #f4f8fd 0%, var(--ice) 32%, #fff 100%);
    font-family:Inter, Arial, Helvetica, sans-serif;
}

body.modal-open,
body.menu-open{
    overflow:hidden;
}

button,
input,
textarea{
    font:inherit;
}

a{
    color:inherit;
}

.offline-status{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:90;
    display:none;
    align-items:center;
    max-width:min(360px, calc(100vw - 36px));
    padding:11px 14px;
    border:1px solid rgba(7,26,68,.18);
    border-radius:8px;
    background:#071a44;
    color:#fff;
    box-shadow:0 14px 34px rgba(7,26,68,.22);
    font-size:13px;
    font-weight:800;
    line-height:1.35;
}

body.offline-mode .offline-status{
    display:flex;
}

.site-header{
    position:sticky;
    top:0;
    z-index:40;
    background:rgba(247,251,255,.91);
    border-bottom:1px solid rgba(7,26,68,.08);
    backdrop-filter:blur(18px);
    box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
    transition:box-shadow .22s ease, background .22s ease;
}

.site-header::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(19,168,158,.55), rgba(87,214,255,.42), transparent);
    opacity:.8;
}

body.page-scrolled .site-header{
    background:rgba(247,251,255,.97);
    box-shadow:0 12px 30px rgba(7,26,68,.09);
}

.header-inner{
    width:min(1120px, calc(100% - 42px));
    min-height:66px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(230px, 1fr) auto minmax(320px, 1fr);
    align-items:center;
    gap:24px;
}

.brand-link{
    justify-self:start;
    display:inline-flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    min-width:0;
}

.brand-mark{
    display:block;
    width:40px;
    height:40px;
    flex:0 0 auto;
    border-radius:var(--radius);
    background:#dff6f8;
    object-fit:cover;
    box-shadow:0 7px 18px rgba(7,26,68,.12);
}

.brand-copy{
    display:flex;
    flex-direction:column;
    line-height:1;
    min-width:0;
}

.brand-copy strong{
    color:var(--royal);
    font-size:18px;
    font-weight:900;
}

.brand-copy span{
    margin-top:5px;
    color:#657188;
    font-size:11px;
    font-weight:700;
    line-height:1.22;
    letter-spacing:.13em;
    text-transform:uppercase;
    white-space:normal;
}

.site-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.site-nav a{
    position:relative;
    padding:10px 9px;
    border-radius:var(--radius);
    color:#4d5c70;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
}

.site-nav a::after{
    content:"";
    position:absolute;
    left:10px;
    right:10px;
    bottom:6px;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, var(--teal), var(--cyan));
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible{
    color:var(--royal);
    background:#e8eff9;
    outline:none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after{
    transform:scaleX(1);
}

.header-actions{
    justify-self:end;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:40px;
    padding:0 15px;
    border:1px solid transparent;
    border-radius:var(--radius);
    text-decoration:none;
    font-size:14px;
    font-weight:850;
    cursor:pointer;
    white-space:nowrap;
    box-shadow:0 0 0 rgba(7,26,68,0);
    transition:background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.btn:hover,
.btn:focus-visible{
    transform:translateY(-2px);
    box-shadow:0 12px 26px rgba(7,26,68,.16);
    outline:none;
}

.btn-primary{
    background:linear-gradient(135deg, var(--royal), var(--royal-2));
    color:#fff;
}

.btn-primary:hover,
.btn-primary:focus-visible{
    background:var(--royal-2);
}

.btn-light{
    background:#fff;
    color:var(--royal);
    border-color:rgba(255,255,255,.88);
}

.btn-light:hover,
.btn-light:focus-visible{
    background:#eef5ff;
}

.btn-outline{
    color:#fff;
    border-color:rgba(255,255,255,.36);
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
}

.btn-outline:hover,
.btn-outline:focus-visible{
    background:rgba(255,255,255,.12);
    border-color:rgba(255,255,255,.64);
}

.cmms-access{
    min-width:156px;
    min-height:40px;
    padding:0 16px;
    background:linear-gradient(135deg,#0b2f71 0%,#071a44 100%);
    color:#fff;
    border-color:#10275c;
    overflow:hidden;
    box-shadow:0 12px 24px rgba(7,26,68,.18);
}

.cmms-access:hover,
.cmms-access:focus-visible{
    background:linear-gradient(135deg,#0c4a8c 0%,#0b265f 100%);
    border-color:#17377d;
}

.cmms-login-text{
    color:#fff;
    font-size:14px;
    font-weight:800;
    letter-spacing:0;
    line-height:1;
    text-transform:none;
    white-space:nowrap;
}

.menu-toggle{
    display:none;
    width:46px;
    height:46px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:#fff;
    color:var(--royal);
}

.mobile-nav{
    display:none;
    border-top:1px solid var(--line);
    background:#fff;
}

.mobile-nav-inner{
    width:min(760px, calc(100% - 32px));
    margin:0 auto;
    padding:14px 0 18px;
    display:grid;
    gap:8px;
}

.mobile-nav a,
.mobile-nav button{
    justify-content:flex-start;
    width:100%;
    text-decoration:none;
}

.mobile-link{
    padding:12px 4px;
    color:#425069;
    font-size:16px;
    font-weight:750;
}

.hero{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    min-height:calc(100svh - 132px);
    background:
        linear-gradient(90deg, rgba(3,13,35,.95) 0%, rgba(7,26,68,.88) 36%, rgba(7,26,68,.48) 68%, rgba(7,26,68,.24) 100%),
        linear-gradient(180deg, rgba(3,13,35,.12), rgba(3,13,35,.64)),
        url("../alcc-hero-equipment-room.png");
    background-size:cover;
    background-position:center;
    color:#fff;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    background-image:
        linear-gradient(rgba(255,255,255,.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size:46px 46px;
    mask-image:linear-gradient(90deg, #000 0%, rgba(0,0,0,.7) 40%, transparent 82%);
    opacity:.28;
    animation:clinicalGridDrift 18s linear infinite;
}

.hero::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:linear-gradient(90deg, transparent, var(--teal), var(--cyan), var(--amber), transparent);
    opacity:.9;
}

.hero-inner{
    width:min(1220px, calc(100% - 42px));
    min-height:inherit;
    margin:0 auto;
    display:flex;
    align-items:center;
    padding:54px 0 70px;
}

.hero-content{
    width:min(680px, 100%);
    animation:heroIntro .7s ease both;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:9px;
    width:max-content;
    max-width:100%;
    min-height:29px;
    margin:0 0 20px;
    padding:0 14px;
    border:1px solid rgba(255,255,255,.28);
    border-radius:999px;
    background:rgba(255,255,255,.13);
    color:#fff;
    font-size:12px;
    font-weight:850;
    line-height:1;
    text-transform:uppercase;
    box-shadow:0 10px 30px rgba(0,0,0,.16);
    backdrop-filter:blur(12px);
}

.eyebrow span{
    display:block;
    width:8px;
    height:8px;
    border-radius:999px;
    background:var(--teal);
    box-shadow:0 0 0 6px rgba(19,168,158,.18);
    animation:clinicalPulse 2.6s ease-in-out infinite;
}

.hero h1{
    max-width:650px;
    margin:0;
    color:#f7fbff;
    font-size:62px;
    line-height:.98;
    font-weight:950;
    letter-spacing:0;
    text-shadow:0 18px 50px rgba(0,0,0,.32);
}

.hero-copy{
    max-width:650px;
    margin:24px 0 0;
    color:rgba(255,255,255,.84);
    font-size:18px;
    line-height:1.64;
    text-shadow:0 10px 32px rgba(0,0,0,.28);
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
}

.hero-proof{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:10px;
    max-width:760px;
    margin-top:38px;
}

.hero-proof span{
    position:relative;
    min-height:74px;
    padding:14px 14px 13px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:var(--radius);
    background:rgba(255,255,255,.10);
    color:rgba(255,255,255,.78);
    font-size:13px;
    line-height:1.42;
    backdrop-filter:blur(12px);
}

.hero-proof span::before{
    content:"";
    position:absolute;
    left:14px;
    right:14px;
    top:0;
    height:2px;
    background:linear-gradient(90deg, var(--teal), var(--cyan));
    transform:translateY(-1px);
}

.hero-proof strong{
    display:block;
    margin-bottom:4px;
    color:#fff;
    font-size:12px;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.image-link{
    display:block;
    color:inherit;
    text-decoration:none;
}

.image-link:hover img,
.image-link:focus-visible img{
    transform:scale(1.045);
    filter:saturate(1.06) contrast(1.03);
}

.image-link:focus-visible{
    outline:3px solid rgba(255,255,255,.72);
    outline-offset:4px;
}

.section{
    width:min(1220px, calc(100% - 68px));
    margin:0 auto;
    padding:66px 0;
}

.section-wide{
    width:min(1220px, calc(100% - 68px));
}

.section-heading{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    align-items:end;
    gap:24px;
    margin-bottom:30px;
}

.kicker{
    margin:0 0 17px;
    color:var(--blue);
    font-size:14px;
    font-weight:850;
    letter-spacing:.23em;
    text-transform:uppercase;
}

.section h2{
    max-width:980px;
    margin:0;
    color:var(--ink);
    font-size:34px;
    line-height:1.12;
    font-weight:950;
    letter-spacing:0;
}

.section-lead{
    max-width:900px;
    margin:18px 0 0;
    color:var(--ink-soft);
    font-size:15px;
    line-height:1.7;
}

.text-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--royal);
    text-decoration:none;
    font-size:17px;
    font-weight:850;
}

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

.product-card{
    position:relative;
    overflow:hidden;
    min-height:356px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:#fff;
    box-shadow:var(--soft-shadow);
    transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.product-card::before,
.service-card::before,
.project-card::before,
.contact-card::before,
.about-panel::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:0;
    height:3px;
    background:linear-gradient(90deg, var(--teal), var(--cyan), var(--amber));
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .28s ease;
}

.product-card:hover,
.service-card:hover,
.project-card:hover,
.contact-card:hover,
.about-panel:hover{
    transform:translateY(-4px);
    border-color:rgba(19,168,158,.35);
    box-shadow:0 22px 48px rgba(7,26,68,.13);
}

.product-card:hover::before,
.service-card:hover::before,
.project-card:hover::before,
.contact-card:hover::before,
.about-panel:hover::before{
    transform:scaleX(1);
}

.product-image{
    aspect-ratio:4 / 3;
    height:auto;
    overflow:hidden;
    background:#e6edf6;
    cursor:pointer;
}

.product-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .55s ease, filter .55s ease;
}

.product-card .product-image img{
    object-position:center;
}

.product-card:hover .product-image img,
.product-card:focus-within .product-image img{
    transform:scale(1.045);
    filter:saturate(1.06) contrast(1.03);
}

.product-body{
    padding:20px 20px 22px;
}

.product-label{
    margin:0 0 18px;
    color:var(--blue);
    font-size:13px;
    font-weight:850;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.product-body h3{
    margin:0;
    color:var(--ink);
    font-size:20px;
    line-height:1.2;
}

.product-body p{
    margin:14px 0 0;
    color:var(--ink-soft);
    font-size:15px;
    line-height:1.45;
}

.split-band{
    background:linear-gradient(180deg,#fff 0%, #f8fbff 100%);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

.about-grid,
.services-grid,
.projects-grid,
.contact-grid{
    display:grid;
    gap:22px;
}

.about-grid{
    grid-template-columns:1fr;
    align-items:start;
}

.about-panel{
    position:relative;
    overflow:hidden;
    max-width:1040px;
    padding:28px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:#fff;
    box-shadow:var(--soft-shadow);
    transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.about-panel h3{
    margin:0 0 14px;
    color:var(--royal);
    font-size:24px;
    line-height:1.2;
}

.about-panel p{
    margin:0;
    color:var(--ink-soft);
    font-size:16px;
    line-height:1.7;
}

.about-image{
    overflow:hidden;
    aspect-ratio:16 / 9;
    border-radius:var(--radius);
    background:#e3ecf6;
    box-shadow:0 18px 44px rgba(7,26,68,.12);
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:24% center;
    display:block;
}

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

.service-card,
.project-card,
.contact-card{
    position:relative;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:#fff;
    box-shadow:var(--soft-shadow);
    transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card{
    min-height:184px;
    padding:22px;
}

.icon-box{
    display:grid;
    place-items:center;
    width:46px;
    height:46px;
    border-radius:var(--radius);
    background:linear-gradient(135deg,#e8f7ff,#e8fff9);
    color:#08766f;
    box-shadow:inset 0 0 0 1px rgba(19,168,158,.18);
}

.service-card h3{
    margin:18px 0 9px;
    color:var(--ink);
    font-size:18px;
    line-height:1.2;
}

.service-card p{
    margin:0;
    color:var(--ink-soft);
    font-size:15px;
    line-height:1.55;
}

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

.project-card{
    padding:24px;
}

.project-card strong{
    display:block;
    color:var(--royal);
    font-size:32px;
    line-height:1;
}

.project-card span{
    display:block;
    margin-top:12px;
    color:var(--ink-soft);
    font-size:16px;
    line-height:1.55;
}

.contact-grid{
    grid-template-columns:minmax(0, 1fr) minmax(320px, .68fr);
    align-items:start;
}

.contact-card{
    padding:26px;
}

.contact-card h3{
    margin:0 0 18px;
    color:var(--royal);
    font-size:24px;
}

.contact-list{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:18px;
}

.contact-list li{
    display:grid;
    grid-template-columns:42px minmax(0, 1fr);
    gap:14px;
}

.contact-list svg{
    width:42px;
    height:42px;
    padding:10px;
    border-radius:var(--radius);
    background:#e8f0ff;
    color:var(--royal-3);
}

.contact-list span{
    display:block;
    margin-bottom:4px;
    color:var(--muted);
    font-size:12px;
    font-weight:850;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.contact-list a,
.contact-list address{
    color:var(--ink);
    font-style:normal;
    font-size:16px;
    font-weight:850;
    line-height:1.45;
    text-decoration:none;
}

.quote-panel{
    padding:26px;
    border-radius:var(--radius);
    background:linear-gradient(135deg, var(--royal), var(--royal-2));
    color:#fff;
    box-shadow:var(--shadow);
}

.quote-panel h3{
    margin:0;
    font-size:25px;
    line-height:1.2;
}

.quote-panel p{
    margin:16px 0 24px;
    color:rgba(255,255,255,.78);
    font-size:16px;
    line-height:1.6;
}

.reveal-on-scroll{
    opacity:0;
    transform:translateY(18px);
    transition:opacity .55s ease, transform .55s ease;
}

.reveal-on-scroll.is-visible{
    opacity:1;
    transform:translateY(0);
}

@keyframes clinicalPulse{
    0%,100%{box-shadow:0 0 0 5px rgba(19,168,158,.18)}
    50%{box-shadow:0 0 0 9px rgba(87,214,255,.12)}
}

@keyframes clinicalGridDrift{
    from{background-position:0 0, 0 0}
    to{background-position:46px 46px, 46px 46px}
}

@keyframes heroIntro{
    from{opacity:0;transform:translateY(16px)}
    to{opacity:1;transform:translateY(0)}
}

@media (prefers-reduced-motion:reduce){
    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        scroll-behavior:auto!important;
        transition-duration:.01ms!important;
    }

    .reveal-on-scroll{
        opacity:1;
        transform:none;
    }
}

.site-footer{
    color:#fff;
    background:#061638;
}

.footer-inner{
    width:min(1200px, calc(100% - 42px));
    margin:0 auto;
    padding:40px 0;
    display:grid;
    grid-template-columns:1.2fr .7fr .95fr;
    gap:36px;
}

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

.footer-copy{
    max-width:470px;
    margin:18px 0 0;
    color:rgba(255,255,255,.72);
    font-size:15px;
    line-height:1.7;
}

.footer-inner h4{
    margin:0 0 14px;
    font-size:13px;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.footer-inner ul{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
}

.footer-inner a,
.footer-inner address{
    color:rgba(255,255,255,.76);
    font-style:normal;
    line-height:1.55;
    text-decoration:none;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.14);
}

.footer-bottom-inner{
    width:min(1200px, calc(100% - 42px));
    margin:0 auto;
    padding:18px 0;
    display:flex;
    justify-content:space-between;
    gap:16px;
    color:rgba(255,255,255,.62);
    font-size:13px;
}

.modal-overlay{
    position:fixed;
    inset:0;
    z-index:80;
    display:grid;
    place-items:center;
    padding:24px;
    background:rgba(3,11,28,.68);
    backdrop-filter:blur(12px);
}

.modal-overlay[hidden]{
    display:none;
}

.modal{
    position:relative;
    width:min(760px, 100%);
    max-height:calc(100vh - 48px);
    overflow:auto;
    border-radius:var(--radius);
    background:#fff;
    box-shadow:var(--shadow);
}

.login-modal{
    width:min(430px, 100%);
}

.modal::before{
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:5px;
    background:linear-gradient(90deg, var(--royal), var(--blue));
}

.modal-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
    padding:30px 30px 8px;
}

.modal h2{
    margin:0;
    color:var(--royal);
    font-size:28px;
    line-height:1.2;
}

.modal-subtitle{
    margin:8px 0 0;
    color:var(--ink-soft);
    font-size:15px;
    line-height:1.5;
}

.modal-close{
    display:grid;
    place-items:center;
    width:40px;
    height:40px;
    flex:0 0 auto;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:#fff;
    color:var(--ink-soft);
    cursor:pointer;
}

.modal-close:hover,
.modal-close:focus-visible{
    border-color:var(--royal-3);
    color:var(--royal);
    outline:none;
}

.modal-form{
    padding:18px 30px 30px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.field,
.field-group{
    display:grid;
    gap:7px;
}

.field.full{
    grid-column:1 / -1;
}

.field label,
.field-group label{
    color:var(--ink);
    font-size:13px;
    font-weight:850;
}

.field input,
.field textarea,
.field select,
.field-group input{
    width:100%;
    min-height:48px;
    border:1px solid #cbd7e5;
    border-radius:var(--radius);
    background:#fbfdff;
    color:var(--ink);
    padding:12px 13px;
    outline:none;
}

.field textarea{
    min-height:132px;
    resize:vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.field-group input:focus{
    border-color:var(--royal-3);
    box-shadow:0 0 0 3px rgba(37,104,216,.16);
}

.modal-actions{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:14px;
    margin-top:18px;
}

.form-status,
.login-message{
    min-height:20px;
    margin:0;
    color:var(--ink-soft);
    font-size:13px;
    font-weight:700;
}

.login-message{
    margin-top:14px;
}

.login-message.error{
    color:#b42318;
}

.password-wrapper{
    position:relative;
}

.password-wrapper input{
    padding-right:52px;
}

.toggle-password{
    position:absolute;
    right:9px;
    top:50%;
    transform:translateY(-50%);
    display:grid;
    place-items:center;
    width:36px;
    height:36px;
    border:none;
    border-radius:var(--radius);
    background:transparent;
    color:#627386;
    cursor:pointer;
}

.toggle-password:hover,
.toggle-password:focus-visible{
    background:#eef4f9;
    color:var(--royal-3);
    outline:none;
}

.login-btn{
    width:100%;
    min-height:50px;
    margin-top:18px;
    border:none;
    border-radius:var(--radius);
    background:var(--royal);
    color:#fff;
    font-size:17px;
    font-weight:900;
    cursor:pointer;
}

.login-btn:hover,
.login-btn:focus-visible{
    background:var(--royal-2);
    outline:none;
}

.login-btn:disabled{
    opacity:.72;
    cursor:wait;
}

@media (max-width:1180px){
    .header-inner{
        grid-template-columns:1fr auto;
    }

    .site-nav{
        display:none;
    }

    .menu-toggle{
        display:grid;
        place-items:center;
    }

    body.menu-open .mobile-nav{
        display:block;
    }

    .header-actions .btn-primary{
        display:none;
    }

    .hero-inner{
        min-height:calc(100svh - 124px);
        padding:46px 0 60px;
    }

    .hero h1{
        font-size:52px;
        line-height:1;
    }

    .products-grid,
    .services-grid,
    .projects-grid,
    .about-grid,
    .contact-grid,
    .footer-inner{
        grid-template-columns:1fr;
    }

    .products-grid{
        max-width:720px;
    }
    .section h2{font-size:30px}
}

@media (max-width:680px){
    .header-inner,
    .hero-inner,
    .section,
    .section-wide,
    .footer-inner,
    .footer-bottom-inner{
        width:calc(100% - 28px);
    }

    .header-inner{
        min-height:68px;
        gap:10px;
    }

    .brand-mark{
        width:40px;
        height:40px;
    }

    .brand-copy span{
        display:none;
    }

    .header-actions{
        gap:8px;
    }

    .cmms-access{
        min-width:136px;
        min-height:36px;
        padding:0 12px;
    }

    .cmms-login-text{
        font-size:12px;
    }

    .hero{
        min-height:calc(100svh - 116px);
        background-position:64% center;
    }

    .hero-inner{
        padding:38px 0 54px;
    }

    .hero h1{
        font-size:38px;
        line-height:1.04;
    }

    .eyebrow{
        max-width:100%;
        white-space:normal;
    }

    .hero-copy{
        font-size:16px;
        line-height:1.58;
    }

    .hero-proof{
        grid-template-columns:1fr;
        margin-top:28px;
    }

    .hero-proof span{
        min-height:auto;
    }

    .section-heading,
    .form-grid{
        grid-template-columns:1fr;
    }

    .product-card{
        min-height:auto;
    }

    .product-image{
        height:220px;
    }

    .footer-bottom-inner{
        flex-direction:column;
    }

    .modal-header,
    .modal-form{
        padding-left:20px;
        padding-right:20px;
    }
}

@media (max-width:440px){
    .hero h1{
        font-size:34px;
    }

    .hero-actions{
        align-items:stretch;
        flex-direction:column;
    }

    .hero-actions .btn{
        width:100%;
    }
}
