﻿/* ------------------------------------------------- */
/* Table of Contents                                 */
/* ------------------------------------------------- */
/* 01. CSS Variables                                 */
/* 02. General Styles                                */
/* 03. Main Content Styles                           */
/* 04. Nav Styles                                    */
/* 05. Button Styles                                 */
/* 06. Footer Styles                                 */
/* 07. Form Styles                                   */
/* 08. Mobile Styles                                 */
/* 09. Media Query Styles                            */
/* ------------------------------------------------- */

/* 01. CSS Variables */

:root {
    /* Color Name Variables */
    --white: #fff;
    --main-text-color: #1f2937;
    --bg-color: #fff;
    --bg-lt-grey-color: #f8fafc;
    --bg-lt-orange-color: #fff8f5;
    --bg-lt-yellow-color: #fcf6e6;
    --bg-lt-blue-color: #f3f9ff;
    --bg-banner-home: #330f10;
    --bg-banner-unit-types: #330f10;
    --bg-banner-tech-architecture: #ddedf6;
    --bg-banner-tech-ecosystem: #a65505;
    --bg-banner-about-industries: #000a14;
    --bg-banner-about-resources-left: #e1d4c4;
    --bg-banner-about-resources-right: #191c21;
    --bg-banner-about-company: #121d30;
    --bg-banner-about-partners: #121d30;
    --bg-banner-request-demo: #f6f5f5;
    --bg-in-page-links-platform: #b30f11;
    --bg-in-page-links-unit-types: #edf1f5;
    --bg-in-page-links-technology: #254f7b;
    --bg-in-page-links-about: #4c5067;
    --bg-progress-bar: #a2a2a8;
    --bg-hero-point: #232f40;
    --bg-badge-std: #ad1a1c;
    --bg-card-regulatory: #fffaf5;
    --bg-card-community: #f5feff;
    --link-color-in-page-unit-types: #1f2937;
    --border-lt-orange-color: #fde7d8;
    --ink-color: #1f2937;
    --primary-red-color: #ee3438;
    --primary-red-color-on-dark: #fb797c;
    --primary-red-hover-color: #de2529;
    --primary-dark-red-color: #c1262a;
    --primary-x-dark-red-color: #b30f11;
    --tertiary-orange-color: #d93c1e;
    --tertiary-lt-orange-color: #e68577;
    --tertiary-orange-hover-color: #d53618;
    --tertiary-lt-orange-hover-color: #ed9082;
    --nav-color: #393946;
    --subnav-color: #1b1a20;
    --chip-text-color: #7c2d12;
    --bullet-on-dark-color: #ffb090;
    --outline-lt-grey-color: #e5e7eb;
    --outline-lt-grey-color-alt: #e1e4e8;
    --outline-lt-orange-color: #eed1c2;
    --outline-legend-color: #85b7e1;
    --outline-badge-freq-color: #85b7e1;
    --outline-in-page-links-unit-types: #d9dfe5;
    --outline-card-regulatory: #f9b67e;
    --outline-card-community: #98d6da;
    --bullet-on-card-regulatory: #f68519;
    --bullet-on-card-community: #339ea4;
    --mobile-line-color: #e2e4e8;
    --chevron-color: #b2b2b6;
    --eyebrow-on-platform-hero-color: #ffcfbf;
    --eyebrow-on-technology-hero-color: #cfe5fc;
    --eyebrow-on-about-hero-color: #cbd2ee;
    --eyebrow-on-cta-color: #ffe0d4;
    --link-color: #b30f11;
    --link-hover-color: #c1262a;
    --dark-aqua-link-color: #86e7ec;
    --dark-orange-link-color: #fcb067;
    --dark-red-link-color: #ffaeb0;
    --featured-color: #37a4aa;
    --featured-dark-color: #206165;
    --ahjs-color: #f68519;
    --ahjs-dark-color: #8d4502;
    --contractors-color: #e65a5d;
    --contractors-dark-color: #b11b1d;
    --lead-text-color: #dbe3ee;
    --lead-text-on-cta-color: #fff3ee;
    --legend-text-color: #285781;
    --badge-freq-text-color: #285781;
    --hero-point-outline: #444d5b;
    --hero-background-color: #172436;
    --form-field-color: #3e4d60;
    --form-focus-color: #71859f;
    --required-color: #f68519;
    --footer-background-color: #393946;
    --footer-top-color: #595963;
    --footer-divider-color: #cccccc;
    --footer-text-color: #fff;
    --footer-nav-link-color: #ffe7c4;
    --footer-highlighted-text-color: #ffe0b3;
    --footer-highlighted-text-color: #ffe0b3;
    /* Text Variables */
    --card-shadow: 2px 2px 4px 0 rgb(0 0 0 / 4%);
    --header-height: 88px;
    --radius: 16px;
    --max: 1200px;
    --regular: 400;
    --bold: 700;
    --x-bold: 900;
}

/* 02. General Styles */

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    color: var(--ink-color);
    background: var(--white);
    line-height: 1.55;
    min-height: 100vh;
    /* Removed by DRW on 5/29/26 - This was the old way of fading in the page without a spinner. */
    /* opacity: 0; */
    transition: opacity 0.5s ease;
}
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    margin: 0 32px;
    padding: 0;
    width: calc(100% - 64px);
    min-width: 325px;
}
.section {
    margin: 0;
    padding: 0;
}
.eyebrow {
    padding-bottom: 10px;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-dark-red-color);
}
.container.eyebrow {
    padding-top: 32px;
}
.hero.platform .eyebrow {
    color: var(--eyebrow-on-platform-hero-color);
}
.hero.technology .eyebrow {
    color: var(--eyebrow-on-technology-hero-color);
}
.hero.about .eyebrow {
    color: var(--eyebrow-on-about-hero-color);
}
.cta-band .eyebrow {
    color: var(--eyebrow-on-cta-color);
    justify-content: center;
}
.light-grey-background {
    background: var(--bg-lt-grey-color);
}
.light-grey-background.unit-types {
    border-bottom: 1px solid var(--outline-lt-grey-color-alt);
}
.white-background {
    background: var(--white);
}
.light-orange-background {
    background: var(--bg-lt-orange-color);
    border-bottom: 1px solid var(--border-lt-orange-color);
}
.light-yellow-background {
    background: var(--bg-lt-yellow-color);
}
h1, h2, h3, h4, p {
    margin: 0;
}
h1 {
    font-size: clamp(40px, 6vw, 62px);
    font-weight: var(--x-bold);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 17px;
}
h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: var(--x-bold);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 17px;
}
.cta-band h2 {
    max-width: 780px;
    margin: 0 auto 17px;
}
.category-head h2 {
    margin-bottom: 0;
}
h3 {
    font-size: 24px;
    font-weight: var(--bold);
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: center;
}
h3.large {
    font-size: 28px;
}
h3.left-justified {
    text-align: left;
}
h3.below-paragraph {
    margin-top: 17px;
}
.unit-types h3 {
    font-size: 20px;
    text-align: left;
}
sup {
    font-size: 42%;
    /* Used for superscript sizing */
    line-height: 0;
    /* Fix the superscript line-height issue */
    position: relative;
    vertical-align: baseline;
    top: -1.2em;
}
.eyebrow sup {
   padding-right: 3px;
   top: 1em;
}
sup.title-text {
    font-size: 100%;
    /* Used for superscript sizing */
    top: 0em;
}
em {
    font-style: italic;
}
em.i-text {
    font-family: 'Source Serif 4', Georgia, serif;
    font-style: italic;
    text-transform: lowercase;
}
.eyebrow em.i-text {
    padding: 1px 0 0 4px;
}
.mob-item em.i-text {
    letter-spacing: 1px;
}
em.i-text.regular {
    font-weight: 400;
}
em.i-text.medium {
    font-weight: 500;
}
em.i-text.semibold {
    font-weight: 600;
}
em.i-text.bold {
    font-weight: 700;
}

/* 03. Main Content Styles */

.progress-container {
    position: fixed;
    width: 100%;
    height: 2px;
    background-color: var(--bg-progress-bar);
    z-index: 1031;
}
.progress-bar {
    width: 0%;
    height: 2px;
    background-color: var(--primary-red-color);
}
.no-wrap {
    white-space: nowrap;
}
p.lead {
    font-size: 18px;
    line-height: 24px;
    color: var(--lead-text-color);
    max-width: 800px;
}
.cta-band p.lead {
    margin: 0 auto;
    color: var(--lead-text-on-cta-color);
    max-width: 780px;
}
p.lead.above-form, .cta-band p.lead.above-form {
    margin-bottom: 17px;
}
p.section-copy {
    font-size: 18px;
    line-height: 24px;
    color: var(--ink-color);
    max-width: 800px;
}
p.section-copy img {
    float: right;
    margin: 0 0 1rem 1rem;
}
p.section-copy.below-paragraph {
    margin-top: 17px;
}
p.section-copy a, ul.section-copy a {
    color: var(--link-color);
    transition: all 0.2s;
    white-space: nowrap;
}
p.section-copy a:hover, ul.section-copy a:hover {
    color: var(--link-hover-color);
}
#header-placeholder {
    /* Don't let it collapse or constrain */
    display: contents; /* makes it "invisible" to layout */
}
.site-header {
    position: sticky;
    /*position: fixed;*/
    width: 100%;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}
.brand {
    padding: 0 0 0 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.spacer-above-content {
    height: var(--header-height);
}
.top-banner {
    width: 100%;
    height: 192px;
}
.top-banner.home {
    background-color: var(--bg-banner-home);
}
.top-banner.unit-types {
    background-color: var(--bg-banner-unit-types);
}
.top-banner.tech-architecture {
    background-color: var(--bg-banner-tech-architecture);
}
.top-banner.tech-ecosystem {
    background-color: var(--bg-banner-tech-ecosystem);
}
.top-banner.about-industries {
    background-color: var(--bg-banner-about-industries);
}
.top-banner.about-resources {
    background: linear-gradient(to right, var(--bg-banner-about-resources-left) 50%, var(--bg-banner-about-resources-right) 50%);
}
.top-banner.about-company {
    background-color: var(--bg-banner-about-company);
}
.top-banner.about-partners {
    background-color: var(--bg-banner-about-partners);
}
.top-banner.request-demo {
    background-color: var(--bg-banner-request-demo);
}
.home .banner-image {
    width: 100%;
    height: 192px;
    background: url(../images/Bg-Slogan-Shad-@2x.png), url(../images/Top-Banner-i-Trax-Platform-Overview.jpg);
    background-size: 1280px 192px, 1280px 192px;
    background-position: right, right;
    background-repeat: no-repeat, no-repeat;
}
.home .banner-image .banner-inside {
    padding: 72px 0px 0px 40px;
    float: right;
    width: 320px;
    height: 192px;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0px;
    color: var(--white);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    text-align: right;
}
.unit-types .banner-image {
    width: 100%;
    height: 192px;
    background: url(../images/Top-Banner-i-Trax-Platform-Unit-Types-Serviced.jpg);
    background-size: 1280px 192px;
    background-position: center;
    background-repeat: no-repeat;
}
.tech-architecture .banner-image {
    width: 100%;
    height: 192px;
    background: url(../images/Top-Banner-Technology-i-Trax-Architecture.jpg);
    background-size: 1280px 192px;
    background-position: center;
    background-repeat: no-repeat;
}
.tech-ecosystem .banner-image {
    width: 100%;
    height: 192px;
    background: url(../images/Top-Banner-Technology-i-Suite-Ecosystem.jpg);
    background-size: 1280px 192px;
    background-position: center;
    background-repeat: no-repeat;
}
.about-industries .banner-image {
    width: 100%;
    height: 192px;
    background: url(../images/Top-Banner-About-Industries.jpg);
    background-size: 1280px 192px;
    background-position: center;
    background-repeat: no-repeat;
}
.about-resources .banner-image {
    width: 100%;
    height: 192px;
    background: url(../images/Top-Banner-About-Resources.jpg);
    background-size: 1280px 192px;
    background-position: center;
    background-repeat: no-repeat;
}
.about-company .banner-image {
    width: 100%;
    height: 192px;
    background: url(../images/Top-Banner-About-Company.jpg);
    background-size: 1280px 192px;
    background-position: center;
    background-repeat: no-repeat;
}
.about-partners .banner-image {
    width: 100%;
    height: 192px;
    background: url(../images/Top-Banner-About-Partners.jpg);
    background-size: 1280px 192px;
    background-position: center;
    background-repeat: no-repeat;
}
.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--hero-background-color) url(../images/Bg-Fire-Icon-White.svg) bottom right no-repeat;
}
.only-section {
    flex: 1;
}
.hero-grid, .hero-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px 40px;
    align-items: start;
    padding: 32px 0;
}
.hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
    max-width: 700px;
}
.hero-point {
    padding: 11px 18px 12px;
    border: 1px solid var(--hero-point-outline);
    background: var(--bg-hero-point);
    border-radius: 8px;
    font-size: 16px;
    line-height: 22px;
    color: var(--white);
    text-align: center;
}
.hero-info {
    font-size: 17px;
    line-height: 23px;
}
.hero-info h3 {
    margin-bottom: 25px;
}
.hero-info p .alt-color {
    color: #dbe3ee;
}
.section-grid {
    padding: 0 0 32px;
}
.site-policy {
    background: var(--bg-lt-grey-color) url(../images/Bg-Fire-Icon-Red.svg) bottom right no-repeat;
}
.category-head {
    display:flex;
    justify-content: space-between;
    gap: 8px;
    align-items: end;
    flex-wrap: wrap;
}
.category-count {
    font-style: italic;
}
.unit-top {
      display: flex;
      justify-content: space-between;
      gap: 0px 16px;
      align-items: start;
      margin-bottom: 0px;
}
.badge-row {
    /*display: flex;
    flex-wrap: wrap;
    gap: 10px;*/
    display: none;
}
.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}
.dark-red .badge-row {
    /*margin-top: 17px;*/
}
.dark-red .badge {
    font-weight: 400;
}
.badge.freq {
    padding: 9px 12px 10px;
    background: var(--bg-lt-blue-color);
    border: 1px solid var(--outline-badge-freq-color);
    color: var(--badge-freq-text-color);
    font-size: 15px;
}
.dark-red .badge.freq {
    padding: 14px 17px 15px;
    background: transparent;
    border: 1px solid rgba(251, 121, 124, 0.5);
    color: var(--primary-red-color-on-dark);
    font-size: 16px;
}
.badge.std {
    padding: 5px 8px 6px 9px;
    background: var(--bg-badge-std);
    color: var(--white);
    margin-bottom: 16px;
}
.unit-types .badge.std {
    flex-shrink: 0;
    margin-bottom: 10px;
}
.chart-container {
    justify-self: center;
}
.node {
    position: absolute;
    width: 128px;
    min-height: 84px;
    border-radius: 22px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    color: var(--white);
}
.node.small {
    width: 110px;
    min-height: 68px;
    font-size: 14px;
}
.node.center {
    width: 150px;
    min-height: 100px;
    background: linear-gradient(135deg, rgba(155,17,30,0.82), rgba(255,106,0,0.7));
    box-shadow: 0 24px 40px rgba(155,17,30,0.28);
}
.connector {
    position: absolute;
    background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,106,0,0.75), rgba(255,255,255,0.05));
    height: 2px;
    transform-origin: left center;
    opacity: 0.8;
}
.grid-5, .grid-4, .grid-3, .grid-2, .card-container {
    margin-top: 27px;
    display: grid;
    gap: 16px;
}
.grid-5.below-grid, .grid-4.below-grid, .grid-3.below-grid, .grid-2.below-grid, .card-container.below-grid {
    margin-top: 16px;
}
.card-container {
    margin-top: 0px;
}
.grid-5 {
    grid-template-columns: 1fr;
}
.grid-4 {
    grid-template-columns: 1fr;
}
.grid-3 {
    grid-template-columns: 1fr;
}
.grid-2 {
    grid-template-columns: 1fr;
}
.card-container {
    grid-template-columns: 1fr;
}
.card {
    background: var(--white);
    border: 1px solid var(--mobile-line-color);
    border-radius: var(--radius);
    padding: 23px 27px;
    box-shadow: var(--card-shadow);
    color: var(--main-text-color);
}
.white-background .card {
    background: var(--bg-lt-grey-color);
}
.unit-types .card {
    padding: 23px 27px 13px;
}
.card.regulatory {
    background: var(--bg-card-regulatory);
    border: 1px solid var(--outline-card-regulatory);
}
.card.community {
    background: var(--bg-card-community);
    border: 1px solid var(--outline-card-community);
}
.card p {
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--regular);
}
.icon {
    display: flex;
    width: 100%;
    height: 48px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 17px;
}
.split-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 27px;
}
.audience-card {
    overflow: hidden;
    padding: 0;
}
.audience-visual {
    min-height: 224px;
    display: flex;
}
.contractor-visual {
    height: 224px;
    background: url(../images/i-Trax-Overview-Who-It-Serves-For-Contractors.jpg);
    background-size: 592px 224px;
    background-position: center;
    background-repeat: no-repeat;
}
.ahj-visual {
    height: 224px;
    background: url(../images/i-Trax-Overview-Who-It-Serves-For-AHJs.jpg);
    background-size: 592px 224px;
    background-position: center;
    background-repeat: no-repeat;
}
.governance-visual {
    height: 224px;
    background: url(../images/i-Trax-Architecture-Data-Governance-Principles.jpg);
    background-size: 592px 224px;
    background-position: center;
    background-repeat: no-repeat;
}
.developer-visual {
    height: 224px;
    background: url(../images/i-Trax-Architecture-Data-Governance-Platform-Control.jpg);
    background-size: 592px 224px;
    background-position: center;
    background-repeat: no-repeat;
}
.state-visual {
    height: 224px;
    background: url(../images/i-Suite-Ecosystem-Module-Framework-State.jpg);
    background-size: 592px 224px;
    background-position: center;
    background-repeat: no-repeat;
}
.local-visual {
    height: 224px;
    background: url(../images/i-Suite-Ecosystem-Module-Framework-Local-and-Public-Safety.jpg);
    background-size: 592px 224px;
    background-position: center;
    background-repeat: no-repeat;
}
.primary-fire-visual {
    height: 224px;
    background: url(../images/About-Industries-Regulated-Environments-Fire-and-Life-Safety.jpg);
    background-size: 592px 224px;
    background-position: center;
    background-repeat: no-repeat;
}
.regulated-asset-visual {
    height: 224px;
    background: url(../images/About-Industries-Regulated-Environments-Expandable.jpg);
    background-size: 592px 224px;
    background-position: center;
    background-repeat: no-repeat;
}
.company-philosophy-visual {
    height: 224px;
    background: url(../images/About-Company-Mission-and-Vision-Philosophy.jpg);
    background-size: 592px 224px;
    background-position: right;
    background-repeat: no-repeat;
}
.what-drives-visual {
    height: 224px;
    background: url(../images/About-Company-Mission-and-Vision-What-Drives.jpg);
    background-size: 592px 224px;
    background-position: center;
    background-repeat: no-repeat;
}
.audience-body {
    padding: 23px 27px 23px;
}
ul.clean {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}
ul.clean.below-title {
    margin-top: 0;
}
ul.clean.below-large-title {
    margin-top: 6px;
}
.connected-box ul.clean {
    max-width: 773px;
}
ul.clean li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 22px;
}
ul.clean li:last-child {
    margin-bottom: 0px;
}
ul.clean li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-dark-red-color);
    font-size: 15px;
    line-height: 1;
}
ul.section-copy.clean li {
    margin-top: 16px;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 24px;
    max-width: 800px;
}
.connected-box ul.clean li::before {
    color: var(--bullet-on-dark-color);
}
.card.regulatory ul.clean li::before {
    color: var(--bullet-on-card-regulatory);
}
.card.community ul.clean li::before {
    color: var(--bullet-on-card-community);
}
ul.clean.indent-list li {
    padding-left: 33px;
}
ul.clean.indent-list li::before {
    left: 17px;
}
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
    align-items: stretch;
}
.step {
    position: relative;
    padding: 24px 20px;
    border-radius: 22px;
    border: 1px solid var(--mobile-line-color);
    background: var(--white);
    box-shadow: var(--card-shadow);
}
.step-number {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--primary-red-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 14px;
}
.ecosystem {
    background: linear-gradient(180deg, var(--bg-lt-orange-color) 0%, #ffffff 100%);
}
.ecosystem-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px 40px;
    align-items: start;
    margin-top: 27px;
}
.module-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.module {
    padding: 11px 18px 12px;
    border-radius: 16px;
    border: 1px solid rgba(184, 191, 200, 0.9);
    background: rgba(235, 238, 242, 0.9);
    font-size: 16px;
    line-height: 22px;
    box-shadow: var(--card-shadow);
    color: var(--main-text-color);
}
.module.state {
    border-color: rgba(248, 174, 112, 0.9);
    background: rgba(254, 233, 215, 0.9);
}
.module.local {
    border-color: rgba(141, 209, 214, 0.9);
    background: rgba(218, 243, 245, 0.9);
}
.compare {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 27px;
}
.compare-item {
    justify-self: center;
    box-shadow: var(--card-shadow);
}
.pricing-box, .connected-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
    align-items: start;
    padding: 25px 27px 28px;
    border-radius: 16px;
    background: var(--ink-color);
    color: var(--white);
    box-shadow: var(--card-shadow);
    margin-top: 27px;
}
.connected-box {
    background: var(--ink-color) url(../images/Bg-Link-Icon.svg);
    background-position: bottom 27px right 36px;
    background-repeat: no-repeat;
}
.price-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 10px;
}
.price-item {
    padding: 11px 18px 12px;
    border: 1px solid var(--primary-red-hover-color);
    border-radius: 8px;
    background: var(--primary-x-dark-red-color);
    text-align: center;
}
.chip-copy {
    font-size: 18px;
    line-height: 24px;
    color: var(--chip-text-color);
    font-weight: 400;
    max-width: 800px;
}
.chip-copy.first-sentence {
    padding-top: 32px;
    color: var(--ink-color);
    font-weight: 700;
    margin-bottom: 9px;
}
.chip-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 27px;
}
.chip-list.fitted {
    display: flex;
    grid-template-columns: initial;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
}
.chip-item {
    padding: 11px 18px 12px;
    border: 1px solid var(--outline-lt-orange-color);
    border-radius: 8px;
    color: var(--chip-text-color);
    font-weight: 700;
    background: var(--white);
    text-align: center;
}
.card-counts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.card-counts .icon {
    height: 34px;
    margin-bottom: 8px;
}
.card-counts .card {
    border: 2px solid;
}
.card-counts .card.dark-orange {
    border-color: rgba(246,133,25,0.75);
    background: rgba(99,44,17,0.25);
}
.card-counts .card.dark-yellow {
    border-color: rgba(236,161,0,0.75);
    background: rgba(94,62,9,0.25);
}
.card-counts .card.dark-green {
    border-color: rgba(77,181,53,0.75);
    background: rgba(9,78,53,0.25);
}
.card-counts .card.dark-aqua {
    border-color: rgba(55,164,170,0.75);
    background: rgba(3,65,58,0.25);
}
.card-counts .card.dark-blue {
    border-color: rgba(87,148,201,0.75);
    background: rgba(0,46,90,0.25);
}
.card-counts .card.dark-red {
    border-color: rgba(230,90,93,0.75);
    background: rgba(111,23,22,0.25);
}
.card-counts .card.dark-grey {
    border-color: rgba(167,174,185,0.75);
    background: rgba(38,43,51,0.25);
}
.card-counts .card p {
    font-size: 17px;
    font-weight: 700;
    line-height: 23px;
    text-align: center;
    color: var(--white);
}
.card-counts-full .icon {
    height: 34px;
    margin-bottom: 8px;
}
.card-counts-full .card {
    border-color: transparent;
    background: var(--ink-color);
}
.card-counts-full .card p {
    font-size: 17px;
    font-weight: 700;
    line-height: 23px;
    text-align: center;
    color: var(--white);
}
.hero-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.hero-cards .icon {
    margin-top: 6px;
    margin-bottom: 0px;
}
.hero-cards .card {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: auto 1fr;
    gap: 18px;
    border: 2px solid;
    padding: 21px 27px 23px;
}
.hero-cards .card.dark-orange {
    border-color: rgba(246,133,25,0.75);
    background: rgba(99,44,17,0.25);
}
.hero-cards .card.dark-orange a {
    color: var(--dark-orange-link-color);
    transition: all 0.2s;
}
.hero-cards .card.dark-orange a:hover {
    color: var(--white);
}
.hero-cards .card.dark-yellow {
    border-color: rgba(236,161,0,0.75);
    background: rgba(94,62,9,0.25);
}
.hero-cards .card.dark-green {
    border-color: rgba(77,181,53,0.75);
    background: rgba(9,78,53,0.25);
}
.hero-cards .card.dark-aqua {
    border-color: rgba(55,164,170,0.75);
    background: rgba(3,65,58,0.25);
}
.hero-cards .card.dark-aqua a {
    color: var(--dark-aqua-link-color);
    transition: all 0.2s;
}
.hero-cards .card.dark-aqua a:hover {
    color: var(--white);
}
.hero-cards .card.dark-blue {
    border-color: rgba(87,148,201,0.75);
    background: rgba(0,46,90,0.25);
}
.hero-cards .card.dark-red {
    border-color: rgba(230,90,93,0.75);
    background: rgba(111,23,22,0.25);
}
.hero-cards .card.dark-red a {
    color: var(--dark-red-link-color);
    transition: all 0.2s;
}
.hero-cards .card.dark-red a:hover {
    color: var(--white);
}
.hero-cards .card.dark-grey {
    border-color: rgba(167,174,185,0.75);
    background: rgba(38,43,51,0.25);
}
.hero-cards .card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: var(--white);
}
.hero-cards .card p.title-copy {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 11px;
}
.legend-grid .card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    font-size: 18px;
    line-height: 24px;
    border-color: var(--outline-legend-color);
    background-color: var(--bg-lt-blue-color);
}
.legend-grid .card strong {
    color: var(--legend-text-color);
}
.cta-band {
    background: linear-gradient(135deg, #9b111e 0%, #c4222f 45%, #ff6a00 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    position: relative;
}
.cta-band::before, .cta-band::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    filter: blur(6px);
}
.cta-band::before {
    top: -80px;
    left: -70px;
}
.cta-band::after {
    bottom: -100px;
    right: -60px;
}
.loading {
    padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--white);
    border-radius: 0px;
    opacity: 1;
    transition: opacity 0.8s ease;
}
.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}
.loading .loading-logo, .loading .loading-anim {
    margin: 84px auto 0;
    position: absolute;
    left: 0; 
    right: 0;
    width: 200px; /* Need a specific value to work */
    overflow: hidden;
    z-index: 2;
    /* Added by DRW on 5/29/26 - This centers the loader in the middle of the screen */
    /*position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    overflow: hidden;
    z-index: 2;*/
}
.slogan {
    opacity: 0;
}
.slogan.animate {
    animation: fadeSlideIn 2s ease-out forwards;
}
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-450px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 04. Nav Styles */

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 12px;
    gap: 20px;
}
.container.nav {
    margin: 0 22px;
    width: calc(100% - 44px);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.nav-links {
    display: none;
    align-items: center;
    gap: 4px;
    color: var(--nav-color);
    font-size: 16px;
    font-weight: 700;
}
.nav-links > a, .nav-item > .nav-label {
    padding: 2px 8px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    gap: 1px;
    color: var(--nav-color);
    text-decoration: none;
}
.nav-links > a:hover, .nav-item > .nav-label:hover {
    color: var(--primary-red-color);
}
.nav-item {
    position: relative;
}
.nav-label .chevron {
    margin-left: 1px;
    font-size: 14px;
    color: var(--chevron-color);
    transition: transform 0.2s;
}
.nav-item:hover .chevron {
    transform: rotate(180deg);
}
.dropdown {
    display: none;
    padding: 11px 8px 12px;
    position: absolute;
    top: calc(100% + 0px);
    left: 7px;
    background: rgba(255,255,255,0.97);
    border-top: 2px solid rgba(238,52,56,0.7);
    border-radius: 0 0 8px 8px;
    min-width: 190px;
    z-index: 100;
}
.nav-item:hover .dropdown {
    display: block;
}
.dropdown a {
    display: block;
    padding: 3px 14px 2px;
    color: var(--subnav-color);
    font-size: 14px;
    font-weight: 400;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.dropdown a:hover {
    color: var(--primary-red-color);
}
/* Hamburger Button */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--nav-color);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}
.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.in-page-links {
    padding: 14px 0;
    width: 100%;
}
.in-page-links.platform {
    background-color: var(--bg-in-page-links-platform);
}
.in-page-links.unit-types {
    background-color: var(--bg-in-page-links-unit-types);
    border-top: 1px solid var(--outline-in-page-links-unit-types);
    border-bottom: 1px solid var(--outline-in-page-links-unit-types);
}
.in-page-links.technology {
    background-color: var(--bg-in-page-links-technology);
}
.in-page-links.about {
    background-color: var(--bg-in-page-links-about);
}
.links-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px 12px;
    font-size: 16px;
    line-height: 20px;
    font-weight: var(--bold);
}
.links-container a {
    color: var(--white);
    opacity: 0.92;
    transition: 0.2s ease;
}
.links-container a:hover {
    opacity: 1;
}
.unit-types .links-container a {
    color: var(--link-color-in-page-unit-types);
    font-weight: 400;
}
.top-link-button {
    display: none;
    /*display: inline;*/
    position: fixed;
    bottom: 24px;
    left: 0px;
    width: 39px;
    height: 40px;
    z-index: 1;
    color: #fde4e3;
    cursor: pointer;
    background: var(--white) url(../images/Footer-Top-Icon-on-Light.svg) no-repeat top left;
    background-size: 39px 80px;
    border: 1px solid var(--mobile-line-color);
    border-left: none;
    border-radius: 6px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    box-shadow: var(--card-shadow);
    opacity: 0.97;
}
.top-link-button i::before, .top-link-button i.fa.fa-arrow-up {
    /*padding: 0px;
    margin: 11px 0px 0px 6px;
    width: 16px;
    height: 14px;*/
}
.top-link-button:hover {
    opacity: 1.0;
    background-position: 0px -40px;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}

/* 05. Button Styles */

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}
.btn-row.below-bullets, .btn-row.below-copy {
    margin-top: 26px;
}
.audience-body .btn-row, .featured .btn-row, .ahjs .btn-row, .contractors .btn-row {
    padding-bottom: 9px;
    justify-content: center;
}
.pricing-box .btn-row, .connected-box .btn-row, .cta-band .btn-row, .btn-row.center {
    justify-content: center;
}
.unit-types .btn-row {
    margin-top: 24px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.2s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn.primary {
    padding: 12px 24px;
    background: var(--primary-x-dark-red-color);
    color: var(--white);
}
.btn.primary:hover {
    background: var(--primary-red-hover-color);
    color: var(--white);
}
.nav-right > .btn.primary {
    display: none;
}
.mob-cta .btn.primary {
    width: 100%;
    justify-content: center;
}
.btn.secondary {
    padding: 12px 24px;
    border-color: var(--primary-x-dark-red-color);
    color: var(--primary-x-dark-red-color);
    background: var(--white);
}
.btn.secondary:hover {
    border-color: var(--primary-red-hover-color);
    color: var(--primary-red-hover-color);
    background: var(--white);
}
.featured .btn.secondary {
    border-color: var(--featured-color);
    color: var(--featured-dark-color);
}
.featured .btn.secondary:hover {
    color: var(--featured-color);
}
.ahjs .btn.secondary {
    border-color: var(--ahjs-color);
    color: var(--ahjs-dark-color);
}
.ahjs .btn.secondary:hover {
    color: var(--ahjs-color);
}
.contractors .btn.secondary {
    border-color: var(--contractors-color);
    color: var(--contractors-dark-color);
}
.contractors .btn.secondary:hover {
    color: var(--contractors-color);
}
.btn.tertiary {
    padding: 12px 24px;
    border-color: var(--tertiary-lt-orange-color);
    color: var(--white);
    background: var(--tertiary-orange-color);
}
.btn.tertiary:hover {
    border-color: var(--tertiary-lt-orange-hover-color);
    color: var(--white);
    background: var(--tertiary-orange-hover-color);
}
.btn.light {
    padding: 12px 24px;
    background: var(--white);
    color: var(--primary-x-dark-red-color);
    border: 2px solid var(--outline-lt-grey-color);
}
.btn.light:hover {
    background: var(--white);
    color: var(--primary-red-hover-color);
    border: 2px solid var(--outline-lt-grey-color);
}
a.back-to-list-button {
    margin: 0 auto;
    height: 32px;
    width: 32px;
    display: block;
    cursor: pointer;
    border-radius: 50%;
    background: url(../images/Back-to-List-Button.svg) no-repeat top left;
    background-size: 32px 64px;
}
a.back-to-list-button:hover {
    background-position: 0px -32px;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}

/* 06. Footer Styles */

.site-footer {
    flex-shrink: 0;
    padding: 27px 0 30px;
    border-top: 8px solid var(--footer-top-color);
    background-color: var(--footer-background-color);
    color: var(--footer-text-color);
}
.site-footer a {
    opacity: 0.9;
    transition: 0.2s ease;
}
.site-footer a:hover {
    opacity: 1.0;
}
.site-footer .nav-section a {
    opacity: 1.0;
}
.site-footer .nav-section a:hover {
    color: var(--footer-nav-link-color);
}
.site-footer .social-buttons a {
    opacity: 0.97;
    transition: 0.2s ease;
}
.site-footer .social-buttons a:hover {
    opacity: 1.0;
}
.footer-grid {
    display: flex;
    align-items: flex-start; /* aligns children to the top */
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
.footer-links .nav-section {
    font-size: 16px;
    color: var(--footer-highlighted-text-color);
    font-weight: 700;
}
.footer-links .subnav-section {
    font-size: 14px;
    color: var(--footer-text-color);
    font-weight: 400;
}
.footer-divider {
    color: var(--footer-divider-color);
}
.footer-terms-and-social {
    display: flex;
    gap: 0px;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    color: var(--footer-text-color);
    font-weight: 400;
}
.footer-terms-and-social .social-buttons {
    padding: 6px 0 0px;
    display: flex;
    justify-content: center;
}
.footer-terms-and-social .social-buttons a {
    margin: 0 0 0 8px;
    height: 34px;
    width: 34px;
    display: block;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--white);
    transition: initial;
}
.footer-terms-and-social .social-buttons a.facebook {
    background: var(--white) url(../images/Social-Facebook-Icon-on-Light.svg) no-repeat top left;
    background-size: 34px 68px;
}
.footer-terms-and-social .social-buttons a.x-social {
    background: var(--white) url(../images/Social-X-Icon-on-Light.svg) no-repeat top left;
    background-size: 34px 68px;
}
.footer-terms-and-social .social-buttons a:hover {
    background-position: 0px -34px;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}
.copyright-content {
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 30px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.7);
}

/* 07. Form Styles */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
}
.full-width {
    grid-column: 1 / -1;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 0;
}
.required {
    color: var(--required-color);
}
label {
    font-size: 17px;
    font-weight: 700;
    line-height: 23px;
}
input, textarea {
    appearance: none;
    -webkit-appearance: none;
    background: var(--form-field-color);
    border: 2px solid var(--form-field-color);
    border-radius: 6px;
    padding: 8px 12px;
    outline: none;
    color: var(--white);
}
input:focus, textarea:focus {
    border-color: var(--form-focus-color);
}
textarea {
    resize: vertical;
    min-height: 100px;
}
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
    padding-right: 8px;
}
input[type="radio"] {
    appearance: auto;
    -webkit-appearance: auto;
    width: 18px;
    height: 18px;
    cursor: pointer;
    background: revert;
    border: revert;
    border-radius: revert;
    padding: revert;
}
input[type="radio"]:focus {
    outline: none;
}
.radio-wrap {
    display: inline-flex;
    border-radius: 50%;
}
.radio-wrap:has(input[type="radio"]:focus) {
    /*box-shadow: 0 0 0 2px var(--form-focus-color);*/
    box-shadow: 0 0 0 1px var(--hero-background-color), 0 0 0 3px var(--form-focus-color);
}

/* 08. Mobile Styles */

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 49;
    /*overflow-x: clip;*/
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.32s;
}
.mobile-nav.open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}
.mobile-nav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,24,39,0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
.mobile-nav.open .mobile-nav-overlay {
    opacity: 1;
}
.mobile-nav-drawer {
    padding: 23px 0 40px;
    position: absolute;
    top: var(--header-height);
    right: 0;
    width: min(320px, 90vw);
    height: calc(100% - var(--header-height));
    border-top: 1px solid var(--mobile-line-color);
    background: var(--bg-lt-grey-color);
    box-shadow: -8px 0 40px rgba(17,24,39,0.14);
    overflow-y: auto;
    transform: translateX(100%);
    transition: all 0.8s ease-out 0.2s;
}
.mobile-nav.open .mobile-nav-drawer {
    transform: translateX(0);
}
.mobile-nav-drawer a, .mobile-nav-drawer .mob-label {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    padding: 5px 32px 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--nav-color);
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.mobile-nav-drawer a:hover, .mobile-nav-drawer .mob-label:hover {
    color: var(--primary-red-color);
}
.mob-chevron {
    margin-left: 4px;
    font-size: 14px;
    color: var(--chevron-color);
    transition: transform 0.2s;
}
.mob-item.open .mob-chevron {
    transform: rotate(180deg);
}
.mob-sub {
    padding: 3px 0;
    display: none;
    background: var(--white);
    border-top: 1px solid var(--mobile-line-color);
    border-bottom: 1px solid var(--mobile-line-color);
}
.mob-item.open .mob-sub {
    display: block;
}
.mob-sub a {
    padding: 3px 24px 2px 51px;
    font-size: 14px;
    font-weight: 400;
    color: var(--subnav-color);
}
.mob-sub a:hover {
    color: var(--primary-red-color);
}
.mob-divider {
    height: 1px;
    background: var(--mobile-line-color);
    margin: 8px 32px;
}
.mob-cta {
    margin: 20px 32px 0;
}

/* 09. Media Query Styles */

@media (max-width: 389px) {
    .container {
        margin: 0 32px;
        width: 325px;
    }
    .container.nav {
        margin: 0 22px;
        width: 345px;
    }
    .site-header, .hero, .section, .cta-band, .site-footer, .home .banner-image, .unit-types .banner-image, .tech-architecture .banner-image, .tech-ecosystem .banner-image, .about-industries .banner-image, .about-resources .banner-image, .about-company .banner-image, .about-partners .banner-image, .in-page-links {
        width: 389px;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: initial;
    }
    .grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid-3.only-3 .card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 8px);
    }
    .grid-3.only-3.scale-full-width .card:last-child {
        justify-self: initial;
        width: initial;
    }
    .module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .price-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .chip-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .card-counts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .card-counts .card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 8px);
    }
}

@media (min-width: 672px) {
    .split-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .container {
        max-width: initial;
    }
    .grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .module-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .card-counts .card:last-child {
        grid-column: initial;
        justify-self: initial;
        width: initial;
    }
    .card-counts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 864px) {
    .container {
        max-width: initial;
    }
    .container.nav {
        margin: 0 auto;
        width: calc(100% - 64px);
        max-width: initial;
    }
    .brand {
        padding: 0;
    }
    .nav-links {
        display: flex;
    }
    .nav-toggle {
        display: none;
    }
    .nav-right > .btn.primary {
        display: block;
    }
    .footer-grid {
        text-align: left;
        flex-direction: row;
    }
    .footer-links {
        flex-direction: row;
        justify-content: initial;
        width: initial;
    }
    .footer-terms-and-social {
        justify-content: flex-end;
        width: initial;
    }
    .footer-terms-and-social .social-buttons {
        justify-content: flex-end;
    }
    .hero-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .card-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .container {
        max-width: initial;
    }
    .module-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .price-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .chip-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .hero-form-grid {
        grid-template-columns: 3fr 1fr;
    }
}

@media (min-width: 1200px) {
    .container {
        margin: 0 auto;
        width: min(var(--max), calc(100% - 80px));
        max-width: initial;
    }
    .container.nav {
        margin: 0 auto;
        width: calc(100% - 80px);
        max-width: var(--max);
    }
    .container.eyebrow {
        padding-top: 40px;
        padding-bottom: 10px;
    }
    .chip-copy.first-sentence {
        padding-top: 40px;
    }
    .hero-grid, .hero-form-grid {
        padding: 40px 0;
    }
    .section-grid {
        padding: 0 0 40px;
    }
}

@media (min-width: 1280px) {
    .hero {
        background: var(--hero-background-color) url(../images/Bg-Fire-Icon-White.svg) bottom center no-repeat;
    }
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    .site-policy {
        background: var(--bg-lt-grey-color) url(../images/Bg-Fire-Icon-Red.svg) bottom center no-repeat;
    }
    .ecosystem-layout {
        grid-template-columns: 1fr 1fr;
    }
    .grid-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .grid-3.only-3 .card:last-child {
        grid-column: initial;
        justify-self: initial;
        width: initial;
    }
    .compare {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .steps {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .hero-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .card-counts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .card-counts .card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 8px);
    }
    .hero-cards {
        grid-template-columns: 1fr;
    }
    .card-container {
        grid-template-columns: 1fr;
    }
    .home .banner-image {
        background-position: center, center;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: initial;
    }
}

/* Responsive: Used for print only */
@media print {
    /* Hide every element on the page */
    body * {
        visibility: hidden;
    }
    /* Show only the div you want and its children */
    #body-content, #body-content * {
        visibility: visible;
    }
    .print-only {
        display: block;
    }
    .no-print {
        display: none;
    }
}