/* IM Technologies production overrides */
:root {
    --primary-color: #256f78;
    --primary-color-rgb: 37, 111, 120;
    --secondary-color: #1c385f;
    --primary-gradient: 135deg, var(--primary-color), var(--secondary-color);
    --im-bg: #071018;
    --im-bg-soft: #0b1622;
    --im-surface: #101923;
    --im-surface-2: #132231;
    --im-surface-elevated: #172638;
    --im-border: rgba(255, 255, 255, .10);
    --im-border-strong: rgba(255, 255, 255, .20);
    --im-text: #f7fbff;
    --im-text-muted: rgba(255, 255, 255, .74);
    --im-text-soft: rgba(255, 255, 255, .58);
    --im-primary: #256f78;
    --im-secondary: #1c385f;
    --im-accent: #41d6c3;
    --im-focus: #8deee4;
    --im-button: #b7333a;
    --im-button-hover: #d44750;
    --im-radius: 8px;
    --im-radius-sm: 6px;
    --im-section-spacing: 100px;
    --im-card-padding: 34px;
    --im-transition: .22s ease;
    --im-shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    overflow-x: hidden;
    background: var(--im-bg);
    color: var(--im-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main,
.section-dark,
.section-dark.bg-dark {
    background-color: var(--im-bg) !important;
}

main#content:not(.legal-document-page) > section.section-dark:not(.hero-section) {
    padding-top: var(--im-section-spacing) !important;
    padding-bottom: var(--im-section-spacing) !important;
}

.section-dark + .section-dark {
    margin-top: -1px;
}

.float-text,
.scrollbar-v {
    display: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
}

h1 {
    font-size: clamp(3.2rem, 6vw, 5.9rem);
    line-height: .98;
}

h2 {
    font-size: clamp(2.15rem, 3.2vw, 4rem);
    line-height: 1.08;
}

.lead,
p {
    line-height: 1.75;
}

.subtitle {
    color: var(--im-accent) !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

a,
button {
    text-underline-offset: 4px;
}

a:focus-visible,
button:focus-visible,
#mainmenu a:focus-visible,
.btn-main:focus-visible {
    outline: 3px solid var(--im-focus);
    outline-offset: 4px;
    border-radius: 6px;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 10000;
    padding: 10px 14px;
    color: #03100f;
    background: var(--im-focus);
    font-weight: 700;
    transform: translateY(-180%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.im-logo {
    display: inline-flex;
    align-items: center;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
}

.im-logo-image {
    display: block;
    width: auto;
    height: 42px;
}

.im-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: var(--im-radius);
    background: rgba(255, 255, 255, .08);
    font-weight: 800;
}

.im-logo-text {
    font-size: 22px;
    line-height: 1;
}

header {
    position: fixed;
    top: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: background-color var(--im-transition), box-shadow var(--im-transition), backdrop-filter var(--im-transition);
}

header.transparent {
    background: transparent;
}

header.scroll-down,
header.nav-up {
    margin-top: 0;
}

header.is-scrolled,
header.smaller,
header.header-mobile {
    background: rgba(5, 14, 21, .78);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    backdrop-filter: saturate(140%) blur(14px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}

header.header-mobile.menu-open {
    background: rgba(5, 14, 21, .96);
}

#mainmenu > li > a.menu-item {
    position: relative;
}

#mainmenu a.menu-item:hover,
#mainmenu a.menu-item.active {
    color: #fff !important;
}

#mainmenu a.menu-item.active::after,
#mainmenu a.menu-item:hover::after {
    width: 100%;
}

#mainmenu a.menu-item::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    background: var(--im-accent);
    transition: width var(--im-transition);
}

#menu-btn {
    position: relative;
    border: 0;
    background: transparent;
}

#menu-btn::before,
#menu-btn::after {
    content: "" !important;
    position: absolute;
    left: 6px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform var(--im-transition), box-shadow var(--im-transition), top var(--im-transition);
}

#menu-btn::before {
    top: 9px;
    box-shadow: 0 7px 0 #fff;
}

#menu-btn::after {
    top: 23px;
}

#menu-btn.menu-open::before {
    top: 15px;
    box-shadow: none;
    transform: rotate(45deg);
}

#menu-btn.menu-open::after {
    top: 15px;
    transform: rotate(-45deg);
}

.btn-main:not(.btn-line),
.btn-main:not(.btn-line) span {
    color: #fff !important;
}

.btn-main:not(.btn-line) {
    background: var(--im-button) !important;
    border-color: var(--im-button) !important;
}

.btn-main:not(.btn-line):hover {
    background: var(--im-button-hover) !important;
    border-color: var(--im-button-hover) !important;
}

.btn-main,
.btn-main span {
    font-size: 15px;
    font-weight: 800;
}

.hero-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 84px;
    padding-bottom: 28px;
}

.hero-top-spacer {
    height: 48px;
}

.hero-card-spacer {
    height: 26px;
}

.hero-main-row {
    --bs-gutter-x: clamp(2.5rem, 5vw, 5rem);
    --bs-gutter-y: 1.25rem;
}

.hero-eyebrow {
    margin-bottom: 12px;
    color: #8deee4 !important;
}

.hero-title {
    max-width: 680px;
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(2.85rem, 4.35vw, 4.45rem);
    line-height: 1.02;
    font-weight: 800;
}

.hero-title span {
    display: block;
    white-space: nowrap;
}

.hero-copy {
    max-width: 66ch;
    color: var(--im-text-muted);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.66;
}

.hero-section p {
    color: var(--im-text-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 8px;
}

.hero-trust-panel {
    position: relative;
    margin-left: clamp(16px, 2vw, 32px);
    padding: clamp(24px, 3.2vw, 38px);
    border: 1px solid var(--im-border);
    border-radius: var(--im-radius);
    background:
        linear-gradient(145deg, rgba(65, 214, 195, .12), rgba(28, 56, 95, .08) 42%, rgba(7, 16, 24, .88)),
        radial-gradient(circle at 85% 12%, rgba(65, 214, 195, .18), transparent 30%);
    box-shadow: var(--im-shadow);
    overflow: hidden;
}

.hero-trust-panel::after {
    content: "";
    position: absolute;
    inset: auto -20% -45% 18%;
    height: 240px;
    border: 1px solid rgba(65, 214, 195, .13);
    border-radius: 999px;
    transform: rotate(-8deg);
}

.trust-panel-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.panel-kicker {
    margin-bottom: 8px;
    color: var(--im-accent) !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.trust-panel-header h2 {
    margin-bottom: 0;
    font-size: clamp(1.6rem, 2vw, 2.3rem);
    line-height: 1.18;
}

.trust-panel-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.trust-panel-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 14px;
    border: 1px solid var(--im-border);
    border-radius: var(--im-radius);
    background: rgba(255, 255, 255, .045);
    color: var(--im-text);
    font-weight: 800;
}

.trust-panel-grid i {
    color: var(--im-accent);
    font-size: 20px;
}

.panel-note {
    position: relative;
    z-index: 1;
    margin: 28px 0 0;
    color: var(--im-text-muted) !important;
    font-size: 15px;
}

.service-card,
.product-card,
.value-card,
.roadmap-card,
.future-service-card,
.process-step,
.industry-card,
.insight-card {
    border: 1px solid var(--im-border);
    transition: transform var(--im-transition), border-color var(--im-transition), background-color var(--im-transition), box-shadow var(--im-transition);
}

.service-card:hover,
.product-card:hover,
.value-card:hover,
.roadmap-card:hover,
.future-service-card:hover,
.process-step:hover,
.industry-card:hover,
.insight-card:hover {
    transform: translateY(-4px);
    border-color: var(--im-border-strong);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.service-card,
.product-card,
.value-card,
.roadmap-card,
.future-service-card,
.process-step,
.insight-card {
    display: flex;
    flex-direction: column;
}

.service-card h3,
.product-card h3,
.value-card h3,
.roadmap-card h3,
.future-service-card h3,
.process-step h3,
.insight-card h3 {
    margin-bottom: 14px;
    font-size: clamp(21px, 1.7vw, 25px);
    line-height: 1.25;
}

.service-card p,
.product-card p,
.value-card p,
.roadmap-card p,
.future-service-card p,
.insight-card p {
    color: var(--im-text-muted);
}

.service-card p:last-child,
.product-card p:last-child,
.value-card p:last-child,
.roadmap-card p:last-child,
.future-service-card p:last-child,
.insight-card p:last-child {
    margin-bottom: 0;
}

.service-card,
.product-card {
    padding: var(--im-card-padding) !important;
}

.capability-list {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.capability-list li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.55;
}

.capability-list li::before {
    content: "";
    position: absolute;
    top: .72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--im-accent);
    box-shadow: 0 0 0 4px rgba(65, 214, 195, .10);
}

.card-icon,
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border: 1px solid rgba(65, 214, 195, .28);
    border-radius: var(--im-radius);
    background: rgba(65, 214, 195, .10);
    color: var(--im-accent);
    font-size: 22px;
}

.feature-icon {
    margin-bottom: 0;
}

.product-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .018));
}

.product-card-featured {
    min-height: 100%;
    background:
        linear-gradient(145deg, rgba(65, 214, 195, .14), rgba(255, 255, 255, .035) 44%, rgba(255, 255, 255, .018)),
        var(--im-surface) !important;
}

.product-card-featured h3 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.product-card-featured .product-note {
    color: #fff !important;
    font-weight: 800;
}

.product-card-assetcore {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 0 !important;
    background-color: #061a33 !important;
    background-image: url("../images/products/im-assetcore-bg-1000.jpg") !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    background-size: cover !important;
}

.product-card-assetcore .product-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(3, 17, 38, .96) 0%,
        rgba(3, 17, 38, .88) 38%,
        rgba(3, 17, 38, .58) 68%,
        rgba(3, 17, 38, .25) 100%
    );
}

.product-card-assetcore .product-content {
    position: relative;
    z-index: 2;
    max-width: 58%;
}

.product-card-secureendpoint {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    justify-content: center;
    background-color: #071225 !important;
    background-image: url("../images/products/im-secureendpoint-bg.webp") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
}

.product-card-secureendpoint .product-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* backdrop-filter: blur(1.8px);
    -webkit-backdrop-filter: blur(1.8px); */
    background:
        linear-gradient(
            90deg,
            rgba(3, 10, 25, .96) 0%,
            rgba(3, 10, 25, .88) 38%,
            rgba(3, 10, 25, .72) 68%,
            rgba(3, 10, 25, .62) 100%
        );
}

.product-card-secureendpoint .product-content {
    position: relative;
    z-index: 2;
    max-width: 58%;
    margin-top: auto;
    margin-bottom: auto;
}

.product-cta {
    align-self: flex-start;
    margin-top: 26px;
}

.product-side-stack {
    display: grid;
    gap: 24px;
    height: 100%;
}

.product-focus-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 30px;
}

.product-focus-list span {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--im-text);
    background: rgba(255, 255, 255, .055);
    font-size: 13px;
    font-weight: 800;
}

.product-type {
    margin-bottom: 16px;
    color: #fff !important;
    font-weight: 700;
}

.roadmap-card,
.value-card {
    height: 100%;
    padding: var(--im-card-padding);
    border-radius: var(--im-radius);
    background: var(--im-surface);
}

.roadmap-card {
    gap: 8px;
}

.roadmap-card h3 {
    color: #fff;
}

.future-service-card {
    position: relative;
    gap: 8px;
    height: 100%;
    padding: var(--im-card-padding);
    border-color: rgba(255, 255, 255, .16);
    border-radius: var(--im-radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
        var(--im-surface);
    overflow: hidden;
}

.future-service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: rgba(180, 185, 195, .72);
}

.future-service-card h3 {
    color: #fff;
    font-size: clamp(1.85rem, 2.8vw, 2.65rem);
}

.future-service-card .card-icon,
.future-service-card .badge-soft,
.future-service-card h3,
.future-service-card p {
    position: relative;
    z-index: 1;
}

.service-availability-note {
    color: #fff !important;
    font-weight: 800;
}

.future-service-note {
    max-width: 860px;
    margin: 18px auto 0;
    color: var(--im-text-soft) !important;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

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

.process-step {
    min-height: 148px;
    padding: 24px;
    border-radius: var(--im-radius);
    background: var(--im-surface);
}

.process-step span {
    margin-bottom: auto;
    color: var(--im-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.process-step h3 {
    margin: 26px 0 0;
    color: #fff;
}

.industry-card {
    min-height: 96px;
    padding: 20px 12px;
    text-align: center;
    border-radius: var(--im-radius);
    background: var(--im-surface);
    color: #fff;
    font-weight: 700;
    line-height: 1.25;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-card {
    min-height: 220px;
    padding: var(--im-card-padding);
    border-radius: var(--im-radius);
    background: var(--im-surface);
    justify-content: flex-start;
    gap: 28px;
}

#insights.insights-section {
    background:
        linear-gradient(180deg, rgba(7, 16, 24, 1) 0%, rgba(11, 22, 34, .96) 42%, rgba(7, 16, 24, 1) 100%) !important;
}

.insight-label,
.badge-soft {
    display: inline-block;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 13px;
    line-height: 1.4;
    color: #fff !important;
    background: rgba(255, 255, 255, .08);
}

.status-beta {
    border-color: rgba(255, 214, 102, .42);
    color: #fff2bf !important;
    background: rgba(255, 214, 102, .12);
}

.status-planned {
    border-color: rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .82) !important;
    background: rgba(255, 255, 255, .07);
}

.status-research {
    border-color: rgba(190, 194, 202, .36);
    color: rgba(245, 247, 250, .9) !important;
    background: rgba(160, 166, 176, .15);
}

.standards-section {
    background:
        linear-gradient(180deg, rgba(7, 16, 24, .72), rgba(7, 16, 24, .92)),
        var(--im-bg) !important;
    overflow: hidden;
}

.standards-section .sw-overlay {
    z-index: 1;
}

.standards-section .lead {
    color: rgba(255, 255, 255, .82);
}

.philosophy-section {
    padding-top: 70px !important;
    padding-bottom: 90px !important;
}

.philosophy-panel {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(34px, 5vw, 58px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--im-radius);
    background:
        linear-gradient(135deg, rgba(65, 214, 195, .10), rgba(255, 255, 255, .035) 42%, rgba(28, 56, 95, .16)),
        rgba(255, 255, 255, .028);
    text-align: center;
}

.philosophy-panel h2 {
    margin-bottom: 18px;
}

.philosophy-panel .lead {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .82);
}

.standards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.standards-grid span {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--im-radius);
    padding: 12px 16px;
    color: var(--im-text);
    background: rgba(7, 16, 24, .72);
    font-weight: 800;
}

.contact-cta {
    background:
        linear-gradient(135deg, rgba(37, 111, 120, .95), rgba(28, 56, 95, .95)) !important;
}

.contact-cta h2,
.contact-cta p {
    position: relative;
    z-index: 2;
}

.contact-mark {
    pointer-events: none;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-brand .im-logo-image {
    height: 48px;
}

.footer-brand .im-logo-text {
    font-size: 24px;
}

.footer-tagline {
    margin-bottom: 12px;
    color: #fff;
    font-weight: 700;
}

.footer-brand-column,
.footer-nav {
    height: auto !important;
    min-width: 0;
    padding-bottom: 0 !important;
    overflow: visible;
}

footer .widget ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding-left: 0;
    margin-bottom: 0;
}

footer .widget h2,
footer .widget .h5 {
    color: #fff !important;
    opacity: 1;
}

footer .widget li {
    list-style: none;
    margin-bottom: 0;
    line-height: 1.45;
}

.footer-nav a,
.subfooter a {
    text-decoration: none;
    transition: color var(--im-transition), opacity var(--im-transition);
}

.footer-nav a:hover,
.subfooter a:hover,
.footer-nav a.active,
.footer-nav a[aria-current="page"],
.footer-nav a:focus-visible,
.subfooter a:focus-visible {
    color: var(--im-accent);
}

.footer-nav a:focus-visible,
.subfooter a:focus-visible {
    outline: 2px solid var(--im-focus);
    outline-offset: 3px;
    border-radius: 4px;
}

footer a[href$=".html"] {
    overflow-wrap: anywhere;
}

.footer-main {
    padding-top: 10px;
}

.footer-social-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-social-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    color: var(--im-text-soft);
    font-weight: 800;
}

.footer-subfooter-content {
    gap: 20px;
}

.footer-version {
    color: var(--im-text-soft);
    font-weight: 800;
}

.legal-header {
    background: transparent;
}

.legal-document-page {
    padding-top: 118px;
}

.legal-hero {
    position: relative;
    padding: 92px 0 46px;
    background:
        radial-gradient(circle at 82% 20%, rgba(65, 214, 195, .12), transparent 32%),
        linear-gradient(180deg, rgba(7, 16, 24, 1), rgba(7, 16, 24, .92));
}

.legal-hero h1 {
    max-width: 980px;
    margin-bottom: 20px;
    font-size: clamp(3rem, 6vw, 5.8rem);
}

.legal-hero .lead {
    max-width: 860px;
    color: var(--im-text-muted);
}

.legal-updated {
    margin-top: 18px;
    color: var(--im-text-soft);
    font-size: 15px;
    font-weight: 800;
}

.legal-content {
    padding: 28px 0 var(--im-section-spacing);
}

.legal-card {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid var(--im-border);
    border-radius: var(--im-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
    box-shadow: 0 20px 70px rgba(0, 0, 0, .22);
}

.legal-card h2 {
    margin-top: 42px;
    margin-bottom: 12px;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card p,
.legal-card li {
    color: var(--im-text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.legal-card a {
    color: var(--im-accent);
    font-weight: 800;
}

.legal-note {
    margin-bottom: 34px;
    padding: 18px 20px;
    border: 1px solid rgba(65, 214, 195, .24);
    border-radius: var(--im-radius);
    background: rgba(65, 214, 195, .08);
    color: var(--im-text) !important;
}

#mainmenu li ul {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 1199px) {
    #mainmenu > li > a.menu-item {
        font-size: 15px;
    }

    .menu_side_area .btn-main {
        display: none;
    }
}

@media (max-width: 991px) {
    html {
        scroll-padding-top: 84px;
    }

    header.header-mobile #mainmenu a.menu-item::after {
        display: none;
    }

    header.header-mobile #mainmenu {
        max-height: calc(100vh - 78px);
        max-width: calc(100vw - 40px);
        overflow-y: auto;
        box-sizing: border-box;
    }

    .hero-section {
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 112px;
        padding-bottom: 40px;
    }

    .hero-title {
        max-width: 620px;
        font-size: clamp(2.55rem, 6.4vw, 3.9rem);
    }

    .hero-copy {
        max-width: 64ch;
        font-size: 1rem;
        line-height: 1.64;
    }

    .hero-card-spacer {
        height: 28px;
    }

    .hero-main-row {
        --bs-gutter-y: 1rem;
    }

    .hero-trust-panel {
        margin-left: 0;
        margin-top: 0;
    }

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

    .legal-document-page {
        padding-top: 76px;
    }

    .hero-image-grid {
        margin-top: 10px;
    }

}

@media (max-width: 767px) {
    main#content .row.gx-5,
    footer .row.gx-5 {
        --bs-gutter-x: 1.5rem;
    }

    .im-logo-text {
        font-size: 18px;
    }

    .im-logo-image {
        height: 36px;
    }

    .footer-brand .im-logo-image {
        height: 42px;
    }

    .im-mark {
        width: 36px;
        height: 36px;
    }

    .hero-section {
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 104px;
        padding-bottom: 38px;
    }

    .hero-eyebrow {
        margin-bottom: 9px;
    }

    .hero-title {
        max-width: 100%;
        margin-bottom: 16px;
        font-size: clamp(2rem, 9.2vw, 2.7rem);
        line-height: 1.05;
    }

    .hero-copy {
        max-width: 100%;
        margin-bottom: 22px !important;
        line-height: 1.58;
    }

    .legal-hero {
        padding: 70px 0 34px;
    }

    .legal-card {
        padding: 26px;
    }

    .legal-card p,
    .legal-card li {
        font-size: 16px;
    }

    .hero-actions .btn-main {
        width: 100%;
        margin-right: 0 !important;
        text-align: center;
    }

    .product-cta {
        width: 100%;
        text-align: center;
    }

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

    .process-step {
        min-height: 126px;
        padding: 22px;
    }

    .philosophy-section {
        padding-top: 56px !important;
        padding-bottom: 68px !important;
    }

    .service-card,
    .product-card,
    .value-card,
    .roadmap-card,
    .future-service-card,
    .process-step,
    .insight-card {
        padding: 28px !important;
    }

    .product-card-assetcore {
        background-position: center right !important;
    }

    .product-card-assetcore .product-content {
        max-width: 100%;
    }

    .product-card-secureendpoint {
        background-position: center center !important;
    }

    .product-card-secureendpoint .product-content {
        max-width: 100%;
    }

    .service-card h3,
    .product-card h3,
    .value-card h3,
    .roadmap-card h3,
    .future-service-card h3,
    .process-step h3,
    .insight-card h3 {
        font-size: 21px;
    }

    .industry-card {
        min-height: 82px;
        font-size: 14px;
    }

    .contact-mark {
        display: none;
    }

    .footer-brand {
        margin-bottom: 14px;
    }

    .subfooter .de-flex {
        gap: 12px;
        align-items: flex-start;
    }
}

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