* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* Use stable viewport height on mobile (prevents jumps when address bar shows/hides) */
@supports (height: 100svh) {
    body {
        min-height: 100svh;
    }

    .gradient-container,
    .hero,
    .ai-agent-section,
    .compliance-gap,
    .compliance-gap-reversed,
    .image {
        min-height: 100svh;
    }
}

.gradient-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    isolation: isolate;
    background-color: rgb(76 138 204);
    background-image: linear-gradient(180deg, rgb(76 138 204) 0%, rgb(57 145 216) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero cloud texture: CSS layer (same URL as preload) so it paints even if <img> handling fails */
.gradient-container::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 5;
    background-image: url('images/cloud-overlay-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.88;
    pointer-events: none;
}

/* Large pale green area covering left and top */
.gradient-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 85%;
    background: radial-gradient(ellipse at 15% 25%, rgba(240, 248, 244, 0.95) 0%, rgba(230, 245, 235, 0.6) 45%, transparent 85%);
    opacity: 0;
    animation: float1 20s ease-in-out infinite;
}

/* Darker green in top-right */
.gradient-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 65%;
    background: radial-gradient(ellipse at 75% 15%, rgba(200, 230, 210, 0.5) 0%, rgba(220, 240, 230, 0.3) 55%, transparent 95%);
    opacity: 0;
    animation: float2 25s ease-in-out infinite;
}

/* Soft pink in bottom-right */
.gradient-3 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 55%;
    background: radial-gradient(ellipse at 80% 75%, rgba(255, 230, 240, 0.6) 0%, rgba(255, 240, 245, 0.4) 55%, transparent 90%);
    opacity: 0;
    animation: float3 18s ease-in-out infinite;
}

/* Additional blending layers for smooth transitions */
.blend-1 {
    position: absolute;
    top: 25%;
    left: 35%;
    width: 55%;
    height: 55%;
    background: radial-gradient(ellipse at 45% 40%, rgba(235, 247, 240, 0.35) 0%, transparent 75%);
    opacity: 0;
    animation: float4 22s ease-in-out infinite;
}

.blend-2 {
    position: absolute;
    bottom: 15%;
    left: 25%;
    width: 70%;
    height: 45%;
    background: radial-gradient(ellipse at 55% 60%, rgba(250, 235, 242, 0.25) 0%, transparent 85%);
    opacity: 0;
    animation: float5 24s ease-in-out infinite;
}

/* Sparkle icon in bottom-right */
.sparkle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
    opacity: 0.7;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sparkle::before {
    width: 1.5px;
    height: 100%;
}

.sparkle::after {
    width: 100%;
    height: 1.5px;
}

.sparkle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.sparkle-inner::before,
.sparkle-inner::after {
    content: '';
    position: absolute;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sparkle-inner::before {
    width: 1.5px;
    height: 100%;
}

.sparkle-inner::after {
    width: 100%;
    height: 1.5px;
}

/* Animations */
@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(15px, -20px) scale(1.05);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-25px, 15px) scale(1.08);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-15px, -10px) scale(1.06);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 25px) scale(1.04);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, 15px) scale(1.07);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 10;
    box-sizing: border-box;
    padding-top: 104px;
    padding-bottom: 48px;
}

.hero__wrapper {
    position: relative;
    z-index: 20;
    max-width: none;
    width: 100%;
    padding: 0 24px;
    padding-left: clamp(24px, 14vw + 24px, 220px);
    margin-top: 0;
    text-align: left;
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero__title {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(52px, 9vw, 96px);
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 64px;
    max-width: 1120px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero__title[data-fade-active] {
    opacity: 1;
    transform: translateY(0);
}

.hero__mobile-break {
    display: none;
}

.hero__description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 34px;
    margin-bottom: 40px;
    max-width: 460px;
    margin-left: 0;
    margin-right: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

@media (min-width: 1920px) {
    .hero__description {
        font-size: 26px;
        line-height: 36px;
    }
}

.hero__description[data-fade-active] {
    opacity: 1;
    transform: translateY(0);
}

.hero__controls {
    margin-top: 32px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero__controls[data-fade-active] {
    opacity: 1;
    transform: translateY(0);
}

.hero__button {
    display: inline-block;
}

/* Compliance teams section (inserted above Solutions) */
.compliance_section {
    background: #faf9f6;
    padding: 168px 0 72px;
}

.compliance_container.container-large {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.teams_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.teams_header .solutions__eyebrow {
    margin: 0 0 8px;
}

.teams_heading {
    margin: 0 0 12px;
    max-width: 980px;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 400;
    color: #3f3f46;
}

.teams_pargraph {
    margin: 0;
    max-width: 760px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #6b7280;
    text-align: center;
}

.spacer-xxlarge {
    height: 48px;
}

.spacer-medium {
    height: 0;
}

.spacer-small {
    height: 8px;
}

.section-spacer {
    display: none;
}

.hide.w-embed {
    display: none;
}

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

.compliance_item {
    min-width: 0;
}

.compliance_item-wrap {
    position: relative;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    aspect-ratio: auto;
}

.compliance_item-wrap::after {
    display: none;
}

.border-radius_12 {
    border-radius: 0;
}

.teams_tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 18px;
    line-height: 1;
    color: rgba(26, 26, 26, 0.92);
    background: rgba(245, 245, 245, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(8px);
}

.bunny-player {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.bunny-player__video,
.bunny-player__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bunny-player__placeholder {
    position: absolute;
    inset: 0;
}

.teams_tile-heading {
    margin: 0;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(28px, 2.2vw, 38px);
    line-height: 1.06;
    letter-spacing: -0.01em;
    font-weight: 400;
    color: #111827;
}

.team_tile-para {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: #6b7280;
}

.div-block-5 {
    position: static;
    padding: 18px 0 0;
    text-wrap: balance;
}

.compliance-carousel__segmented {
    display: none;
    width: 100%;
    max-width: 420px;
    margin: 24px auto 0;
    padding: 0 8px;
    box-sizing: border-box;
    gap: 8px;
    align-items: stretch;
}

.compliance-carousel__segment {
    flex: 1;
    min-width: 0;
    height: 4px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(63, 63, 70, 0.14);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.compliance-carousel__segment:focus-visible {
    outline: 2px solid rgba(63, 63, 70, 0.45);
    outline-offset: 3px;
}

.compliance-carousel__segment--active {
    background: rgba(63, 63, 70, 0.52);
    transform: scaleY(1.35);
}

@media (max-width: 1100px) {
    .teams_header {
        gap: 12px;
    }

    .compliance_grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .bunny-player {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 768px) {
    .compliance_section {
        padding: 112px 0 56px;
    }

    .compliance_container.container-large {
        padding: 0 16px;
    }

    .compliance_grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .compliance_grid::-webkit-scrollbar {
        display: none;
    }

    .compliance_item {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .teams_tag {
        font-size: 14px;
        padding: 6px 12px;
    }

    .teams_tile-heading {
        font-size: 26px;
    }

    .team_tile-para {
        font-size: 14px;
        line-height: 1.45;
    }

    .div-block-5 {
        padding: 14px 0 0;
    }

    .compliance-carousel__segmented {
        display: flex;
    }
}

/* Button Styles */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    min-height: 44px;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.button--large {
    padding: 16px 40px;
    min-height: 48px;
    font-size: 18px;
}

.button--blue {
    background: #000;
    color: #fff;
}

.button--blue:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.button--blue:active {
    transform: translateY(0);
}

.button--border-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
}

.button--border-white:hover {
    background: transparent;
    color: #e8e8e8;
    border-color: #e8e8e8;
}

/* Hero Background Images */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero__background__images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__background__image {
    position: absolute;
    opacity: 0.3;
}

.hero__block-1,
.hero__block-2,
.hero__block-3,
.hero__block-4 {
    position: absolute;
}

.hero__block-1 {
    top: 10%;
    right: 10%;
}

.hero__block-2 {
    bottom: 15%;
    left: 10%;
}

.hero__block-3 {
    top: 50%;
    right: 5%;
}

.hero__block-4 {
    bottom: 10%;
    right: 20%;
}

.media {
    position: relative;
}

.media__image {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Logos Section */
.logos {
    position: relative;
    width: 100%;
    padding: 0 40px 80px;
    z-index: 10;
}

.logos__wrapper {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.logos__title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    letter-spacing: 0.02em;
}

.logos__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.logos__item {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    padding: 0 48px;
    position: relative;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    animation-delay: var(--animation-delay, 0s);
}

.logos__item[data-fade-active] {
    opacity: 1;
    transform: translateY(0);
}

.logos__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

.logos__image {
    height: auto;
    width: auto;
    max-width: 160px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .logos {
        padding: 60px 20px;
    }

    .logos__list {
        gap: 20px;
        flex-wrap: wrap;
    }

    .logos__item {
        padding: 0 16px;
        flex: 1 1 auto;
        min-width: 120px;
    }

    .logos__item:not(:last-child)::after {
        display: none;
    }

    .logos__title {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .logos__list {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .logos__item {
        padding: 0;
        width: auto;
        flex: 0 0 auto;
        justify-content: center;
    }
}

/* Export button */
.export-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.export-button:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.export-button:active {
    transform: translateY(0);
}

.export-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Menu/Navigation Styles */
.menu {
    position: fixed;
    top: 20px;
    left: 68px;
    right: 68px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* Fixed nav overlapping dark footer: light border + light type */
.menu.menu--over-footer {
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.menu.menu--over-footer .menu__link {
    color: #fff;
}

.menu.menu--over-footer .menu__logo {
    filter: brightness(0) invert(1);
}

.menu.menu--over-footer .menu__center {
    border-left-color: rgba(255, 255, 255, 0.28);
    border-right-color: rgba(255, 255, 255, 0.28);
}

.menu.menu--over-footer .menu__center__item {
    border-right-color: rgba(255, 255, 255, 0.28);
}

.menu.menu--over-footer .menu__center__link {
    color: #fff;
}

.menu.menu--over-footer .menu__toggle__dash {
    background: #fff;
}

.menu.menu--over-footer .menu__button.button--blue {
    background: #fff;
    color: #000;
}

.menu.menu--over-footer .menu__button.button--blue:hover {
    background: #f3f4f6;
    color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.menu.menu--over-footer .menu__button.button--blue:active {
    background: #e5e7eb;
    color: #000;
}

.menu__wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0 32px 0 18px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 68px;
    position: relative;
}

.menu__column {
    display: flex;
    align-items: center;
}

.menu__link {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: 22px;
    font-weight: 500;
    color: #000;
    text-shadow: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu__logo {
    width: 48px;
    height: 48px;
    margin-right: -5px;
    vertical-align: middle;
    filter: none;
}

.footer-section .menu__logo {
    filter: brightness(0) invert(1);
}

.footer-section .menu__link:link,
.footer-section .menu__link:visited,
.footer-section .menu__link:hover,
.footer-section .menu__link:active {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.menu__icon {
    width: 24px;
    height: 24px;
}

.menu__list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 64px;
    margin: 0;
    padding: 0;
}

.menu__list__item {
    position: relative;
}

.menu__center {
    display: grid;
    /* 2 items in the bar: Home + Blog.
       Keep the same per-option column width strategy as before (based on
       --menu-center-col), so items don't shrink just to fit. */
    grid-template-columns: repeat(2, var(--menu-center-col, 9rem));
    align-items: stretch;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu__center__item {
    margin: 0;
    border-right: 1px solid #d9d9d9;
    min-width: 0;
    display: flex;
}

.menu__center__item:last-child {
    border-right: none;
}

.menu__center__link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    color: #111827;
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 0 12px;
    width: 100%;
    box-sizing: border-box;
}

.menu__center__link:hover {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .menu__center {
        --menu-center-col: 8rem;
    }
}

@media (max-width: 840px) {
    .menu__center {
        --menu-center-col: 7rem;
    }

    .menu__center__link {
        font-size: 14px;
        padding: 0 8px;
    }
}

.menu__center__link--current,
.menu__list__link--current {
    font-weight: 600;
}

/* Home should not appear bold when it's the selected/current page */
.menu__center__link--current[href*="#top"],
.menu__list__link--current[href*="#top"] {
    font-weight: 400;
}

.menu.menu--over-footer .menu__center__link--current,
.menu.menu--over-footer .menu__list__link--current {
    color: #fff;
}

/* Only show CTA inside dropdown on mobile */
.menu__list__item--mobile-only {
    display: none;
}

/* Hide nav list on desktop — hamburger + dropdown from 924px down */
@media (min-width: 925px) {
    .menu__list {
        display: none;
    }
}

.menu__list__link {
    background: none;
    border: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.menu__list__link:hover {
    color: #000;
}

.menu__sublist {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.menu__list__item:hover .menu__sublist {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu__sublist--rich {
    min-width: 600px;
}

.menu__sublist__wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu__sublist__item {
    margin: 0;
}

.menu__sublist__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease;
}

.menu__sublist__link:hover {
    background: #f5f5f5;
}

.menu__sublist__image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin: 0;
}

.menu__sublist__image__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.menu__sublist__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu__sublist__title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.menu__sublist__description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    color: #666;
}

.menu__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.button--small {
    padding: 10px 20px;
    font-size: 14px;
}

.menu .button--small {
    padding: 9px 17px;
    font-size: 13px;
}

.menu__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu__toggle__dash {
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

@media (max-width: 924px) {
    .menu {
        top: 10px;
        left: 30px;
        right: 30px;
    }

    .menu__wrapper {
        padding: 10px 16px 10px 12px;
        min-height: 64px;
    }

    .menu__list {
        display: flex;
        position: fixed;
        top: 66px;
        left: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        gap: 0;
        padding: 12px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        z-index: 999;
    }

    .menu__center {
        display: none;
    }

    .menu__list--open {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu__list__item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .menu__list__item:last-child {
        border-bottom: none;
    }

    .menu__list__link {
        display: block;
        padding: 16px 24px;
        width: 100%;
        text-align: left;
        font-size: 18px;
    }

    .menu__toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .menu__toggle--active .menu__toggle__dash:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu__toggle--active .menu__toggle__dash:nth-child(2) {
        opacity: 0;
    }

    .menu__toggle--active .menu__toggle__dash:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* Hide top-bar Request Demo; CTA lives in dropdown list */
    .menu__wrapper > .menu__column:last-of-type {
        display: none;
    }

    .menu__button {
        display: none !important;
    }

    .menu__list__item--mobile-only {
        display: block;
    }

    .menu__list__cta {
        width: calc(100% - 48px);
        margin: 12px 24px;
    }

    .menu--open {
        background: rgba(255, 255, 255, 0.95);
    }
}

/* AI Agent Section */
.ai-agent-section {
    width: 100%;
    min-height: 100vh;
    background: #fff;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-agent-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.w-full {
    width: 100%;
}

.mt-0 {
    margin-top: 0;
}

.min-h-\[550px\] {
    min-height: 550px;
}

.bg-gradient-to-br {
    background: linear-gradient(to bottom right, #f3e8ff, #dbeafe, #fee2e2);
}

.from-purple-100 {
    background-color: #f3e8ff;
}

.via-blue-100 {
    background-color: #dbeafe;
}

.to-red-100 {
    background-color: #fee2e2;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.overflow-hidden {
    overflow: hidden;
}

.flex {
    display: flex;
}

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

.justify-center {
    justify-content: center;
}

.p-8 {
    padding: 2rem;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.-top-32 {
    top: -8rem;
}

.-right-32 {
    right: -8rem;
}

.w-\[500px\] {
    width: 500px;
}

.h-\[500px\] {
    height: 500px;
}

.opacity-15 {
    opacity: 0.15;
}

.top-20 {
    top: 5rem;
}

.right-20 {
    right: 5rem;
}

.w-80 {
    width: 20rem;
}

.h-80 {
    height: 20rem;
}

.opacity-10 {
    opacity: 0.1;
}

.z-10 {
    z-index: 10;
}

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.relative {
    position: relative;
}

.bg-white {
    background-color: #fff;
}

.rounded-2xl {
    border-radius: 1rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.border {
    border-width: 1px;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.gap-4 {
    gap: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.max-w-min {
    max-width: min-content;
}

.-mb-1 {
    margin-bottom: -0.25rem;
}

.-mr-2 {
    margin-right: -0.5rem;
}

.-left-1 {
    left: -0.25rem;
}

.-top-1 {
    top: -0.25rem;
}

.text-yellow-400 {
    color: #facc15;
}

.text-gray-900 {
    color: #111827;
}

.font-medium {
    font-weight: 500;
}

.min-h-\[60px\] {
    min-height: 60px;
}

.text-\[17px\] {
    font-size: 17px;
}

.text-gray-800 {
    color: #1f2937;
}

.leading-relaxed {
    line-height: 1.625;
}

.border-t {
    border-top-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.mt-2 {
    margin-top: 0.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.border-gray-100 {
    border-color: #f3f4f6;
}

.gap-2\.5 {
    gap: 0.625rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-0\.5 {
    width: 0.125rem;
}

.h-1 {
    height: 0.25rem;
}

.bg-gray-400 {
    background-color: #9ca3af;
}

.rounded-full {
    border-radius: 9999px;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-gray-600 {
    color: #4b5563;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

.bg-emerald-50 {
    background-color: #ecfdf5;
}

.text-emerald-600 {
    color: #059669;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.rounded {
    border-radius: 0.25rem;
}

.mt-4 {
    margin-top: 1rem;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.text-main {
    color: #000;
}

.hover\:text-main\/50:hover {
    color: rgba(0, 0, 0, 0.5);
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Compliance Gap Section */
.compliance-gap {
    width: 100%;
    min-height: 100vh;
    padding: 80px 40px;
    background: #faf9f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-gap__wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.compliance-gap__content {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: center;
}

.compliance-gap__text {
    flex: 1;
    max-width: 500px;
}

.compliance-gap__heading {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #000;
    margin: 0 0 24px 0;
}

.compliance-gap__description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.compliance-gap__visual {
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Review Stats Card */
.review-stats-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-stats-container__wireframe {
    position: absolute;
    height: 500px;
    width: auto;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: grayscale(1) brightness(0.95);
}

.review-stats-container__wireframe--layer-1 {
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    transition-delay: 0.2s;
}

.review-stats-container__wireframe--layer-2 {
    right: -90px;
    top: calc(50% + 20px);
    transform: translateY(-50%);
    transition-delay: 0.3s;
}

.review-stats-container__wireframe--layer-3 {
    right: -120px;
    top: calc(50% + 40px);
    transform: translateY(-50%);
    transition-delay: 0.4s;
}

.review-stats-container__wireframe--layer-4 {
    right: -150px;
    top: calc(50% + 60px);
    transform: translateY(-50%);
    transition-delay: 0.5s;
}

/* Show wireframes when content item is active */
.compliance-gap-consolidated__content-item[data-content-index="0"].active .review-stats-container__wireframe--layer-1 {
    opacity: 0.9;
}

.compliance-gap-consolidated__content-item[data-content-index="0"].active .review-stats-container__wireframe--layer-2 {
    opacity: 0.7;
}

.compliance-gap-consolidated__content-item[data-content-index="0"].active .review-stats-container__wireframe--layer-3 {
    opacity: 0.5;
}

.compliance-gap-consolidated__content-item[data-content-index="0"].active .review-stats-container__wireframe--layer-4 {
    opacity: 0.3;
}

.review-stats-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 1;
    transform: translateX(-60px);
}

.review-stats-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.review-stats-card__icon {
    width: 48px;
    height: 48px;
    background: #d1fae5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
}

.review-stats-card__title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
}

.review-stats-card__divider {
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 24px;
}

.review-stats-card__stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-stats-card__stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-stats-card__stat-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    color: #6b7280;
}

.review-stats-card__stat-value {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 8px;
}

.review-stats-card__stat-value--warning {
    background: #fef3c7;
    color: #d97706;
}

.review-stats-card__stat-value--success {
    background: #d1fae5;
    color: #059669;
}

.compliance-gap__bars {
    flex: 1;
    display: flex;
    gap: 60px;
    align-items: flex-end;
    max-width: 600px;
}

.compliance-gap__bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.compliance-gap__bar--materials {
    max-width: 200px;
}

.compliance-gap__bar--capacity {
    max-width: 200px;
}

.compliance-gap__bar__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 12px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #4f46e5;
}

.compliance-gap__checkmark {
    width: 20px;
    height: 20px;
    color: #4f46e5;
}

.compliance-gap__bar__fill {
    width: 100%;
    border-radius: 8px 8px 0 0;
    transition: height 1s ease;
}

.compliance-gap__bar--materials .compliance-gap__bar__fill {
    height: 200px;
    background: linear-gradient(to top, #93c5fd, #bfdbfe);
}

.compliance-gap__bar--capacity .compliance-gap__bar__fill {
    height: 400px;
    background: linear-gradient(to top, #6366f1, #818cf8);
}

.compliance-gap__bar__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    color: #666;
}

.compliance-gap__bar--materials .compliance-gap__bar__label {
    color: #3b82f6;
}

.compliance-gap__bar--capacity .compliance-gap__bar__label {
    color: #6366f1;
}

.compliance-gap__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .compliance-gap__content {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .compliance-gap__text {
        text-align: center;
        max-width: 100%;
    }
    
    .compliance-gap__heading {
        font-size: 50px;
    }
    
    .compliance-gap__bars {
        width: 100%;
        max-width: 500px;
    }
    
    .compliance-gap__visual {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 640px) {
    .compliance-gap {
        padding: 60px 20px;
    }
    
    .compliance-gap__heading {
        font-size: 28px;
    }
    
    .compliance-gap__description {
        font-size: 16px;
    }
    
    .compliance-gap__bars {
        flex-direction: column;
        gap: 40px;
    }
    
    .compliance-gap__bar--materials,
    .compliance-gap__bar--capacity {
        max-width: 100%;
    }
    
    .review-stats-container__wireframe {
        display: none;
    }
    
    .review-stats-card {
        padding: 24px;
    }
    
    .review-stats-card__title {
        font-size: 20px;
    }
    
    .review-stats-card__stat-label {
        font-size: 14px;
    }
    
    .review-stats-card__stat-value {
        font-size: 16px;
    }
}

/* Compliance Table */
.compliance-table-wrapper {
    flex: 1;
    max-width: 800px;
    overflow-x: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.compliance-table-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #faf9f6);
    pointer-events: none;
    z-index: 10;
}

.compliance-table-container {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 1px;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.compliance-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    table-layout: fixed;
}

.compliance-table th,
.compliance-table td {
    box-sizing: border-box;
}

.compliance-table__header {
    padding: 12px 16px;
    text-align: left;
    vertical-align: middle;
    font-weight: 500;
    color: #666;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

.compliance-table__header:first-child {
    padding-left: 16px;
}

.compliance-table__header:last-child {
    padding-right: 16px;
}

.compliance-table__header:nth-child(1),
.compliance-table__cell:nth-child(1) {
    width: 15%;
}

.compliance-table__header:nth-child(2),
.compliance-table__cell:nth-child(2) {
    width: 15%;
}

.compliance-table__header:nth-child(3),
.compliance-table__cell:nth-child(3) {
    width: 20%;
}

.compliance-table__header:nth-child(4),
.compliance-table__cell:nth-child(4) {
    width: 37%;
}

.compliance-table__header:nth-child(5),
.compliance-table__cell:nth-child(5) {
    width: 15%;
}

.compliance-table__sort-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    cursor: default;
    transition: opacity 0.2s;
}

.compliance-table__sort-btn:hover {
    opacity: 1;
}

.compliance-table__chevron {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    flex-shrink: 0;
}

.compliance-table__row {
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s;
    width: 100%;
    display: table-row;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, background-color 0.2s;
}

.compliance-table__row[data-fade-active] {
    opacity: 1;
    transform: translateY(0);
}

.compliance-table__row:hover {
    background-color: transparent;
    width: 100%;
}

.compliance-table__row:last-child {
    border-bottom: none;
}

.compliance-table__cell {
    padding: 16px;
    vertical-align: middle;
    color: #1f2937;
    box-sizing: border-box;
    position: relative;
}

.compliance-table__cell-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-table__cell-content {
    display: inline;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.compliance-table__cell-content.loaded {
    opacity: 1;
    visibility: visible;
}

.compliance-table__cell-loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.compliance-table__cell:first-child {
    padding-left: 16px;
}

.compliance-table__cell:last-child {
    padding-right: 16px;
}

.compliance-table__cell--summary {
    max-width: 500px;
}

.compliance-table__header--item,
.compliance-table__cell--item {
    min-width: 120px;
    padding-left: 16px;
    padding-right: 16px;
}

.compliance-table__framework-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f3f4f6;
    color: #4b5563;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 400;
}

.compliance-table__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111827;
    font-weight: 500;
}

.compliance-table__item--indented {
    padding-left: 24px;
}

.compliance-table__item--article {
    padding-left: 0;
}

.compliance-table__chevron--item {
    width: 16px;
    height: 16px;
    color: #6b7280;
    flex-shrink: 0;
}

.compliance-table__article {
    color: #059669;
    font-weight: 400;
}

.compliance-table__applicable-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: #c084fc;
    color: #fff;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 400;
}

.compliance-table__not-applicable-tag {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px 12px;
    background: #f3e8ff;
    color: #6b21a8;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.2s;
}

.compliance-table__not-applicable-tag:hover {
    opacity: 0.8;
}

.compliance-table__gap-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 400;
}

.compliance-table__no-gap-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #dcfce7;
    color: #166534;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 400;
    cursor: default;
    transition: opacity 0.2s;
}

.compliance-table__no-gap-tag:hover {
    opacity: 1;
}

.compliance-table__documentation {
    text-decoration: none;
    cursor: default;
}

.compliance-table__documentation:hover {
    text-decoration: none;
}

.compliance-table__documentation__ref {
    color: #059669;
}

/* Default: show full documentation names */
.compliance-table__documentation__text-short {
    display: none;
}

/* Default: show full item names */
.compliance-table__article-text-short {
    display: none;
}

@media (max-width: 968px) {
    .compliance-table-wrapper {
        max-width: 100%;
        margin-top: 40px;
        overflow-x: visible;
    }

    .compliance-table-wrapper::before {
        display: none;
    }
    
    .compliance-gap__content {
        flex-direction: column;
    }

    .compliance-table {
        min-width: 0;
        width: 100%;
    }
}

/* Compliance Gap Reversed Section */
.compliance-gap-reversed {
    width: 100%;
    min-height: 100vh;
    padding: 80px 40px;
    background: #faf9f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-gap-reversed * {
    opacity: 1 !important;
}

.compliance-gap-reversed [data-fade],
.compliance-gap-reversed [data-fade-active] {
    opacity: 1 !important;
    transform: none !important;
}

/* Remove fade gradient and dark background from compliance-table-wrapper in reversed section */
.compliance-gap-reversed .compliance-table-wrapper::after {
    display: none !important;
}

.compliance-gap-reversed .compliance-table-container {
    background: transparent !important;
    padding: 0 !important;
    overflow: visible !important;
    display: flex;
    align-items: center;
    min-height: 100%;
}

.compliance-gap-reversed .compliance-table-wrapper {
    overflow: visible !important;
    display: flex;
    align-items: center;
    margin-left: 200px;
    max-width: none !important;
    flex: 1;
}

.compliance-gap-reversed__wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.compliance-gap-reversed__content {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.compliance-gap-reversed__text {
    flex: 1;
    max-width: 500px;
}

.compliance-gap-reversed__heading {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #000;
    margin: 0 0 24px 0;
}

.compliance-gap-reversed__description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Comparison Section */
.comparison {
    width: 100%;
    padding: 210px 40px 80px;
    background: #faf9f6;
}

.comparison__wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.comparison__title {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 auto 124px;
    max-width: 880px;
    text-align: center;
}

.showcase__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.showcase__header {
    margin-bottom: 34px;
}

.showcase__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
}

.showcase__icon__image,
.showcase__icon__image__image {
    width: 100%;
    height: 100%;
}

.showcase__icon__image__image {
    display: block;
    object-fit: contain;
}

.showcase__label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
    margin: 0 0 12px;
}

.showcase__title {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(30px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0;
    max-width: 920px;
}

.showcase__body {
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    gap: 64px;
    align-items: stretch;
}

.showcase__features {
    display: grid;
    gap: 12px;
    max-width: 520px;
    width: 100%;
    justify-self: start;
    margin-top: 18px;
}

.showcase__feature {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.showcase__feature__title {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: #0f172a;
    margin: 0 0 8px;
}

.showcase__feature__description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #334155;
    margin: 0;
}

.showcase__media {
    position: relative;
    min-height: 700px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background-color: #f0f5f2;
    background-image:
        radial-gradient(ellipse at 15% 25%, rgba(240, 248, 244, 0.95) 0%, rgba(230, 245, 235, 0.6) 45%, transparent 85%),
        radial-gradient(ellipse at 75% 15%, rgba(200, 230, 210, 0.5) 0%, rgba(220, 240, 230, 0.3) 55%, transparent 95%),
        radial-gradient(ellipse at 80% 75%, rgba(255, 230, 240, 0.6) 0%, rgba(255, 240, 245, 0.4) 55%, transparent 90%),
        radial-gradient(ellipse at 45% 40%, rgba(235, 247, 240, 0.35) 0%, transparent 75%),
        radial-gradient(ellipse at 55% 60%, rgba(250, 235, 242, 0.25) 0%, transparent 85%);
    background-repeat: no-repeat;
}

.showcase__gradient-1,
.showcase__gradient-2,
.showcase__gradient-3,
.showcase__blend-1,
.showcase__blend-2 {
    display: none;
}

.comparison__diagrams {
    display: grid;
    grid-template-columns: auto auto;
    gap: 32px;
    align-items: stretch;
    justify-content: center;
}

.comparison__diagram-item {
    max-width: 460px;
    width: 100%;
}

.comparison__diagram {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    width: 100%;
}

.comparison__diagram-text {
    margin-top: 20px;
}

.comparison__diagram-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.comparison__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.comparison__item {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.comparison__media {
    position: relative;
    aspect-ratio: 576 / 710;
    width: 100%;
    background: #e2e8f0;
}

.comparison__layer {
    position: absolute;
    inset: 0;
}

.comparison__layer-image,
.comparison__layer-image__image {
    width: 100%;
    height: 100%;
}

.comparison__layer-image__image {
    object-fit: cover;
    display: block;
}

.comparison__content {
    padding: 24px;
}

.comparison__item__title {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    color: #0f172a;
}

.comparison__item__description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
    color: #334155;
}

@media (max-width: 968px) {
    .comparison {
        padding: 60px 20px;
    }

    .showcase__body {
        grid-template-columns: 1fr;
    }

    .showcase__media {
        min-height: 540px;
    }

    .comparison__diagrams {
        grid-template-columns: 1fr;
        gap: 18px;
        justify-items: center;
    }

    .comparison__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .compliance-gap-reversed__content {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .compliance-gap-reversed__text {
        text-align: center;
        max-width: 100%;
        margin-left: 0;
    }
    
    .compliance-gap-reversed__heading {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .compliance-gap-reversed {
        padding: 60px 20px;
    }
    
    .compliance-gap-reversed__heading {
        font-size: 28px;
    }
    
    .compliance-gap-reversed__description {
        font-size: 16px;
    }
}

/* Policy Update Card */
.policy-update-cards-wrapper {
    position: relative;
    min-height: 500px;
    width: 100%;
    margin: auto 0;
}

.policy-update-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    max-width: 600px;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.compliance-gap-reversed .policy-update-card {
    max-width: 800px;
}

.policy-update-card--top-left {
    position: absolute;
    top: 45%;
    left: 30%;
    z-index: 1;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 100%;
}

.policy-update-card--bottom-right {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(calc(-50% + 30px), calc(-50% + 30px));
    transition: opacity 0.5s ease, transform 0.5s ease;
    max-width: 600px;
    width: 100%;
}

.policy-update-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.policy-update-card__title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 20px 0;
}

.policy-update-card__content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 24px 0;
}

.policy-update-card__removed {
    color: #ef4444;
    text-decoration: line-through;
}

.policy-update-card__added {
    background-color: #d1fae5;
    color: #059669;
    padding: 2px 4px;
    border-radius: 3px;
}

.policy-update-card__actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.policy-update-card__button {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.policy-update-card__button:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-update-card--top-left .policy-update-card__button:hover {
    background-color: transparent;
    border-color: #d1d5db;
    transform: none;
    box-shadow: none;
}

.policy-update-card__button--apply {
    border-color: #d1d5db;
    color: #374151;
}

.policy-update-card__button.animating-click {
    animation: buttonClick 0.8s ease;
}

@keyframes buttonClick {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    30% {
        transform: scale(0.95);
        box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.3);
    }
    50% {
        transform: scale(0.92);
        box-shadow: 0 0 0 8px rgba(79, 70, 229, 0.2);
    }
    70% {
        transform: scale(0.95);
        box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@media (max-width: 640px) {
    .policy-update-cards-wrapper {
        /* Keep the desktop-style overlap on mobile, but smaller */
        min-height: 0;
        display: block;
    }
    
    .policy-update-card--top-left,
    .policy-update-card--bottom-right {
        position: absolute;
        left: 50%;
        width: calc(100% - 40px);
        max-width: 360px;
    }

    .policy-update-card--top-left {
        top: 0;
        transform: translate(calc(-50% - 14px), 0);
        z-index: 1;
    }

    .policy-update-card--bottom-right {
        top: 84px;
        transform: translate(calc(-50% + 14px), 0);
        z-index: 2;
    }
    
    .policy-update-card {
        padding: 20px;
    }
    
    .policy-update-card__title {
        font-size: 18px;
    }
    
    .policy-update-card__content {
        font-size: 14px;
        line-height: 1.5;
    }

    .policy-update-card__actions {
        flex-direction: column;
        gap: 10px;
    }

    .policy-update-card__button {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Consolidated Compliance Gap Section */
.compliance-gap-consolidated {
    width: 100%;
    min-height: 200vh;
    padding: 210px 40px 80px;
    background: #faf9f6;
    position: relative;
}

.compliance-gap-consolidated__wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.features-intro {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 124px;
}

.features-intro__eyebrow {
    margin: 0 0 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: #606060;
    letter-spacing: 0.08em;
}

.features-intro__title {
    margin: 0 0 16px;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: #3f3f46;
}

.features-intro__subtitle {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.3;
    color: #6b7280;
}

.compliance-gap-consolidated__content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
}

.compliance-gap-consolidated__text-column {
    flex: 1;
    max-width: 500px;
    padding: 20px 0;
}

.compliance-gap-consolidated__text-item {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}


.compliance-gap-consolidated__heading {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #000;
    margin: 0 0 24px 0;
}

.compliance-gap-consolidated__description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.compliance-gap-consolidated__content-column {
    flex: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 20px 0;
    min-height: 200vh;
}

.compliance-gap-consolidated__content-item {
    position: absolute;
    width: 100%;
    opacity: 1;
    transform: none;
    transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
    pointer-events: none;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.compliance-gap-consolidated__content-item[data-content-index="0"] {
    top: 0;
}

.compliance-gap-consolidated__content-item[data-content-index="1"] {
    top: calc(60vh + 140px);
}

.compliance-gap-consolidated__content-item[data-content-index="2"] {
    top: calc((60vh + 140px) * 2);
}

.compliance-gap-consolidated__content-item.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
    pointer-events: auto;
    z-index: 2;
}

.compliance-gap-consolidated__content-item.inactive {
    opacity: 0.45;
    transform: scale(0.985);
    filter: saturate(0.9);
    pointer-events: none;
    z-index: 1;
}

.compliance-gap-consolidated__content-item[data-content-index="1"] .compliance-table-wrapper {
    max-width: 100%;
}

.compliance-gap-consolidated__content-item[data-content-index="1"] .compliance-table-container {
    border-radius: 24px;
}

.compliance-gap-consolidated__content-item[data-content-index="2"] .compliance-table-wrapper {
    max-width: 100%;
    overflow: visible;
}

.compliance-gap-consolidated__content-item[data-content-index="2"] .compliance-table-container {
    background: transparent;
    padding: 0;
    overflow: visible;
}

.compliance-gap-consolidated__content-item[data-content-index="2"] {
    transform: translateX(70px);
}

.compliance-gap-consolidated__content-item[data-content-index="2"].active {
    transform: translateX(70px) scale(1);
}

.compliance-gap-consolidated__content-item[data-content-index="2"].inactive {
    transform: translateX(70px) scale(0.985);
}

.compliance-gap-consolidated__content-item[data-content-index="0"] {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-70px);
}

.quote_slider-section {
    width: 100%;
    padding: 170px 40px 150px;
    background: #faf9f6;
}

.quote_container.container-large {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 44px;
}

.quote_wrap {
    display: flex;
    gap: 110px;
    align-items: stretch;
    min-height: 330px;
}

.quote_handles {
    width: min(34%, 360px);
    padding: 0 14px 14px 0;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 330px;
}

.quote_heading {
    margin: 0;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(34px, 3.6vw, 50px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #18181b;
    font-weight: 400;
}

.quote_buttons {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.quote_button {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    padding: 0;
    min-height: 0;
    border: 1px solid rgb(76 138 204);
    background: transparent;
    color: rgb(76 138 204);
    cursor: pointer;
}

.quote_button:hover:not(:disabled) {
    border-color: rgb(57 145 216);
    color: rgb(57 145 216);
}

.quote_button:focus-visible {
    outline: 2px solid rgba(76, 138, 204, 0.55);
    outline-offset: 3px;
}

.quote_button:disabled {
    opacity: 0.36;
    cursor: default;
}

.quote_icon {
    width: 20px;
    height: 20px;
}

.quote_icon.flip {
    transform: rotate(180deg);
}

.quote_swiper-wrap {
    flex: 1;
    min-width: 0;
}

.quote-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.quote-track::-webkit-scrollbar {
    display: none;
}

.quote_card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-height: 330px;
    border: 1px solid #9ca3af;
    background: #fff;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    border-radius: 8px;
}

.quote_card_header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    min-height: 64px;
}

.quote_card_icon {
    width: 30px;
    height: 30px;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quote_card_icon svg {
    width: 100%;
    height: 100%;
}

.quote_card_title {
    margin: 0;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: #111827;
    font-weight: 400;
}

.quote_card_desc {
    margin: 0;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #6b7280;
    font-weight: 400;
}

.compliance-gap-consolidated__content-item[data-content-index="0"].active {
    transform: translateX(-70px) scale(1);
}

.compliance-gap-consolidated__content-item[data-content-index="0"].inactive {
    transform: translateX(-70px) scale(0.985);
}

@media (max-width: 968px) {
    .compliance-gap-consolidated {
        min-height: auto;
        padding: 60px 20px;
    }

    .compliance-gap-consolidated__content {
        flex-direction: column;
        gap: 60px;
    }

    .compliance-gap-consolidated__text-column {
        position: relative;
        top: auto;
        transform: none;
        max-width: 100%;
        padding: 0;
    }

    .features-intro {
        margin-bottom: 40px;
    }

    .features-intro__eyebrow {
        font-size: 24px;
    }

    .compliance-gap-consolidated__text-item {
        min-height: auto;
        padding: 30px 0;
    }

    /* When visuals are stacked under text on mobile */
    .compliance-gap-consolidated__text-item .compliance-gap-consolidated__content-item {
        /* Override base flex-centering so visuals sit directly under text */
        display: block;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        /* Reset desktop absolute-position offsets (prevents large empty gaps) */
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        margin-top: 0;
        margin-bottom: 28px;
    }

    /* Give the overlapped cards a bit of breathing room under the description */
    .compliance-gap-consolidated__text-item[data-content-index="2"] .compliance-gap-consolidated__content-item {
        margin-top: 0;
        margin-bottom: 48px;
    }

    /* Match description-to-visual spacing for product review block */
    .compliance-gap-consolidated__text-item[data-content-index="0"] .compliance-gap-consolidated__content-item {
        margin-top: 40px;
    }

    .compliance-gap-consolidated__content-column {
        position: relative;
        top: auto;
        transform: none;
        height: auto;
        min-height: auto;
        padding: 0;
    }

    .compliance-gap-consolidated__content-item {
        position: relative;
        opacity: 1;
        transform: none !important;
        pointer-events: auto;
        min-height: auto;
        padding: 0;
        margin-bottom: 40px;
    }

    .compliance-gap-consolidated__content-item.active,
    .compliance-gap-consolidated__content-item.inactive {
        opacity: 1;
        transform: none !important;
    }

    .compliance-gap-consolidated__content-item[data-content-index="2"],
    .compliance-gap-consolidated__content-item[data-content-index="0"] {
        transform: none !important;
    }

    .compliance-gap-consolidated__heading {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .compliance-gap-consolidated {
        padding: 40px 20px;
    }

    .compliance-gap-consolidated__heading {
        font-size: 28px;
    }

    .compliance-gap-consolidated__description {
        font-size: 16px;
    }

    .compliance-gap-consolidated__text-item {
        padding: 20px 0;
    }
}

/* Stats Section */
.stats {
    width: 100%;
    padding: 110px 40px 220px;
    background: #faf9f6;
}

.stats__wrapper {
    max-width: none;
    margin: 0 auto;
}

.stats .image__container {
    margin: 0 auto;
    height: 30vh;
}

.stats .image__photo {
    object-position: center 58%;
}

.stats__title {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: #3f3f46;
    margin: 0 0 104px;
    text-align: center;
}

.stats__card {
    background-color: #0b1220;
    background-image: url("/Users/julianholle/.cursor/projects/Users-julianholle-Projects-Umbra-Ai-website/assets/pexels-cris-menles-4621648-21287108-ed857ca8-a4a1-4d3e-8d22-ef4eef7d0862.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 18px;
    border: none;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    padding: 28px;
}

.stats__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.stats__item {
    background: transparent;
    border: none;
    border-radius: 14px;
    padding: 22px;
}

.stats__value {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 10px;
}

.stats__label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

/* Enterprise Section */
.enterprise {
    width: 100%;
    padding: 190px 40px 140px;
    background: #faf9f6;
}

.enterprise__wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.enterprise__intro {
    margin: 0 auto 68px;
    text-align: center;
}

.enterprise__title {
    margin: 0;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: #3f3f46;
}

.enterprise__title-accent {
    color: inherit;
}

.enterprise__subtitle {
    margin: 16px 0 0;
    max-width: 760px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.45;
    color: #6b7280;
}

.enterprise__badges {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.enterprise__badge {
    width: 100%;
    height: 100%;
    min-height: 92px;
    max-height: 116px;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    padding: 10px;
}

.enterprise__badge--wide {
    min-height: 96px;
}

.enterprise__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
    column-gap: 56px;
    max-width: 1080px;
    margin: 0 auto;
}

.enterprise__card {
    border: none;
    border-radius: 10px;
    background: transparent;
    padding: 22px;
}

.enterprise__card-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    margin-bottom: 16px;
}

.enterprise__card-icon svg {
    width: 100%;
    height: 100%;
}

.enterprise__card-title {
    margin: 0 0 8px;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -0.01em;
    font-weight: 400;
    color: #111827;
}

.enterprise__card-text {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #6b7280;
}

/* Metrics strip (between enterprise and industries) */
.metrics {
    width: 100%;
    padding: 180px 40px 120px;
    background: #faf9f6;
}

.metrics__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.metrics__title {
    margin: 0 0 48px auto;
    max-width: 28rem;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a;
    text-align: right;
}

.metrics__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.metrics__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 32px;
    align-items: center;
    padding: 28px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.metrics__row:last-child {
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .metrics__row {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        padding: 32px 0;
        border-top-width: 2px;
    }
}

.metrics__label {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    color: #0f172a;
}

.metrics__value {
    margin: 0;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #0f172a;
}

@media (min-width: 768px) {
    .metrics__value {
        text-align: right;
    }
}

@media (max-width: 767px) {
    .metrics__title {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
        text-align: left;
    }
}

@media (max-width: 968px) {
    .metrics {
        padding: 72px 20px 88px;
    }

    .metrics__title {
        margin-bottom: 36px;
    }
}

/* Solutions Grid Section */
.solutions {
    width: 100%;
    padding: 190px 40px 140px;
    background: #faf9f6;
}

.solutions__wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.solutions__intro {
    text-align: center;
    margin: 0 auto 68px;
    /* Between section-top anchor (~262px headline) and tight intro anchor (~88px) */
    scroll-margin-top: 168px;
}

.solutions__eyebrow {
    margin: 0 0 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    color: #6b7280;
}

.solutions__title {
    margin: 0;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: #3f3f46;
}

.solutions__title-accent {
    color: inherit;
}

.feature-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
    gap: 18px;
    align-items: stretch;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
    padding: 16px 0;
    min-height: 88px;
    border-top: 1px solid rgba(17, 24, 39, 0.18);
    cursor: pointer;
    transition: opacity 0.2s ease;
    outline: none;
}

.feature-item:last-child {
    border-bottom: 1px solid rgba(17, 24, 39, 0.18);
}

.feature-item:not(.active) {
    opacity: 0.62;
}

.feature-item:focus-visible {
    opacity: 1;
}

.feature-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    color: #6b7280;
    padding-top: 4px;
}

.feature-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: #111827;
    font-weight: 400;
}

.feature-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #6b7280;
    transform: rotate(-90deg);
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.feature-item.active .feature-toggle-icon {
    transform: rotate(0deg);
    color: #111827;
}

.arrow-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    opacity: 0.8;
    transform: translateX(-3px);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.feature-item.active .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

.feature-description {
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, margin-top 0.2s ease, opacity 0.2s ease;
}

.feature-item.active .feature-description {
    margin-top: 10px;
    max-height: 120px;
    opacity: 1;
}

.feature-item.active {
    align-items: start;
}

.feature-description > div {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 15px;
    line-height: 1.42;
    letter-spacing: -0.02em;
    color: #111827;
    max-width: 56ch;
}

.feature-images {
    position: relative;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

.feature-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.012);
    transition: opacity 0.3s ease, transform 0.5s ease;
    pointer-events: none;
}

.feature-image.active {
    opacity: 1;
    transform: scale(1);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solutions__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.departments-carousel,
.solutions-carousel {
    width: 100%;
    overflow: hidden;
}

.departments-carousel {
    margin-top: 28px;
}

.departments-carousel__track,
.solutions-carousel__track {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.departments-carousel__track::-webkit-scrollbar,
.solutions-carousel__track::-webkit-scrollbar {
    display: none;
}

.departments-carousel__track,
.solutions-carousel__track {
    scrollbar-width: none;
}

.departments-carousel__spacer,
.solutions-carousel__spacer {
    flex: 0 0 4px;
}

.departments-carousel__slide {
    flex: 0 0 360px;
    scroll-snap-align: start;
}

/* Match pre-carousel “3-up” card width inside solutions wrapper */
.solutions-carousel__track {
    gap: 20px;
}

.solutions-carousel__slide {
    /* Slightly under ⅓ width so a hint of the next card shows (4 tabs total) */
    flex: 0 0 calc((100% - 40px) / 3 - 24px);
    min-width: 0;
    scroll-snap-align: start;
}

/* Mobile: segmented bar under carousel shows which card is in view (also tap to jump) */
.solutions-carousel__segmented {
    display: none;
    width: 100%;
    max-width: 420px;
    margin: 40px auto 0;
    padding: 0 8px;
    box-sizing: border-box;
    gap: 8px;
    align-items: stretch;
}

.solutions-carousel__segment {
    flex: 1;
    min-width: 0;
    height: 4px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(63, 63, 70, 0.14);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.solutions-carousel__segment:focus-visible {
    outline: 2px solid rgba(63, 63, 70, 0.45);
    outline-offset: 3px;
}

.solutions-carousel__segment--active {
    background: rgba(63, 63, 70, 0.52);
    transform: scaleY(1.35);
}

.departments-carousel__card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 0;
    overflow: hidden;
}

.departments-carousel__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.departments-carousel__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 80%);
}

.departments-carousel__title {
    margin: 0;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #fff;
    font-weight: 400;
}

.departments-carousel__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.solutions__results-inline {
    margin: 8px auto 96px;
    max-width: 620px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    text-align: center;
}

.solutions__results-title {
    grid-column: 1 / -1;
    margin: 0 0 6px;
    text-align: left;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #3f3f46;
}

.solutions__results-inline .image__stats__item {
    background: transparent;
    border: none;
    backdrop-filter: none;
    padding: 0;
}

.solutions__results-inline .image__stats__value {
    color: #3f3f46;
    margin-bottom: 8px;
    font-size: clamp(24px, 3vw, 34px);
}

.solutions__results-inline .image__stats__label {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.35;
}

.solutions__card {
    position: relative;
    display: block;
    min-height: 0;
    border-radius: 0;
    overflow: visible;
    text-decoration: none;
    border: none;
}

.solutions__card-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.solutions__card-overlay {
    display: none;
}

.solutions__card-content {
    position: static;
    margin-top: 8px;
    padding-right: 6px;
}

.solutions__card-title {
    margin: 0 0 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0;
    color: #0f172a;
    font-weight: 600;
}

.solutions__card-text {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 11px;
    line-height: 1.35;
    color: #475569;
}

/* Product Grid Section */
.product-grid {
    width: 100%;
    padding: 140px 40px 200px;
    background: #faf9f6;
}

#industries {
    /* Positive margin = stop scrolling a bit sooner (slightly less far than -40px overshoot) */
    scroll-margin-top: 52px;
}

.product-grid__wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.product-grid__intro {
    margin: 0 0 68px;
    text-align: center;
}

.product-grid__eyebrow {
    margin: 0 0 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    color: #6b7280;
}

.product-grid__heading {
    margin: 0;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: #3f3f46;
}

.product-grid__card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-grid__media-link {
    display: block;
    border-radius: 0;
    overflow: hidden;
    background: #e5e7eb;
    aspect-ratio: 1 / 1;
}

.product-grid__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Crop right side of risk-assessment mockup (hide trailing “Workflows” area) */
.product-grid__video--risk-assessment {
    object-position: left center;
}

.product-grid__content {
    text-decoration: none;
}

.product-grid__title {
    margin: 0 0 10px;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 400;
    color: #111827;
}

.product-grid__text {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #6b7280;
}

/* FAQ Section */
.faq {
    width: 100%;
    padding: 96px 40px 180px;
    background: #faf9f6;
}

.faq__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.faq__content {
    display: grid;
    gap: 40px;
    align-items: start;
}

@media (min-width: 900px) {
    .faq__content {
        grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
        gap: 56px 64px;
    }

    .faq__title {
        margin-bottom: 0;
    }
}

.faq__title {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #0f172a;
    margin: 0 0 28px;
}

.faq__list {
    display: block;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.faq__item {
    background: transparent;
    border: none;
    border-radius: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
}

@media (min-width: 768px) {
    .faq__list {
        border-top-width: 2px;
        border-bottom-width: 2px;
    }

    .faq__item {
        border-top-width: 2px;
    }
}

.faq__item:first-child {
    border-top: none;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    color: #0f172a;
    background: transparent;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.faq__toggle {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    border: none;
    background: transparent;
    box-sizing: border-box;
}

.faq__icon {
    width: 16px;
    height: 16px;
    color: #0f172a;
}

.faq__icon--minus {
    display: none;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq__answer__content {
    padding: 0 0 22px;
}

.faq__answer__content p {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #334155;
}

.faq__item.is-open .faq__icon--plus {
    display: none;
}

.faq__item.is-open .faq__icon--minus {
    display: inline;
}

/* CTA Section */
.cta {
    width: 100%;
    padding: 140px 0 260px;
    background: #faf9f6;
}

.cta__wrapper {
    max-width: none;
    margin: 0 auto;
}

.cta__inner {
    width: 100%;
    background: #8EDD9F;
    border-radius: 0;
    padding: 56px 48px;
    text-align: center;
}

.cta__title {
    margin: 0 0 14px;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(30px, 4.4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 400;
    color: #fff;
}

.cta__subtitle {
    margin: 18px auto 34px;
    max-width: 820px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: clamp(16px, 2.2vw, 24px);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.52);
}

.cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 22px;
    border-radius: 4px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta__button:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

@media (max-width: 968px) {
    .quote_slider-section {
        padding: 104px 20px 100px;
    }

    .quote_container.container-large {
        padding: 26px;
    }

    .quote_wrap {
        flex-direction: column;
        gap: 16px;
        min-height: 0;
    }

    .quote_handles {
        width: 100%;
        padding: 24px;
        min-height: 0;
    }

    .quote_buttons {
        margin-top: 20px;
    }

    .quote_card {
        flex-basis: 100%;
        min-height: 300px;
        padding: 26px;
    }

    .quote_card_title {
        font-size: clamp(20px, 4.8vw, 24px);
    }

    .quote_card_desc {
        font-size: clamp(17px, 4.4vw, 22px);
        line-height: 1.2;
    }

    .enterprise {
        padding: 90px 20px 70px;
    }

    .solutions {
        padding: 90px 20px 70px;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-images {
        min-height: min(78vw, 460px);
    }

    .feature-item {
        grid-template-columns: minmax(0, 1fr);
        padding: 13px 0;
    }

    .feature-title {
        font-size: clamp(23px, 6vw, 30px);
    }

    .feature-item.active .feature-description {
        max-height: 170px;
    }

    .enterprise__title {
        font-size: clamp(30px, 8vw, 46px);
    }

    .enterprise__subtitle {
        font-size: 17px;
    }

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

    .enterprise__cards {
        grid-template-columns: 1fr;
    }

    .solutions__intro,
    .enterprise__intro,
    .product-grid__intro {
        margin-bottom: 44px;
    }

    .enterprise__card-title {
        font-size: 26px;
    }

    .product-grid {
        padding: 70px 20px 100px;
    }

    .product-grid__intro {
        margin-bottom: 44px;
    }

    .product-grid__title {
        font-size: 26px;
    }

    .stats__card {
        padding: 20px;
    }

    .stats__list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .faq {
        padding: 52px 20px 96px;
    }

    .faq__content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .faq__title {
        margin-bottom: 0;
    }

    .faq__question {
        padding: 18px 0;
        font-size: 18px;
    }

    .faq__answer__content {
        padding: 0 0 18px;
    }

    .solutions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .solutions__card {
        min-height: 0;
    }

    .departments-carousel__slide {
        flex-basis: 270px;
    }

    .solutions-carousel__slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    .solutions-carousel__segmented {
        display: flex;
    }

    .solutions__results-inline {
        margin-top: 36px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .solutions__results-title {
        margin-bottom: 4px;
    }

    .cta {
        padding: 70px 0 130px;
    }

    .cta__inner {
        padding: 36px 20px;
        border-radius: 18px;
    }
}

/* Blog page (Caretta-style list: ⅓ text + ⅔ image per row) */
.blog-page {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #faf9f6;
    color: #0f172a;
    --blog-x-gutter: 2.75rem;
}

/* Homepage uses block flow on body; blog uses flex column — prevent footer from flex-shrinking (clips wordmark / CTA) */
.blog-page > .footer-section {
    flex-shrink: 0;
    align-self: stretch;
}

@media (min-width: 1024px) {
    .blog-page {
        --blog-x-gutter: clamp(5rem, 14vw, 12rem);
    }
}

.blog-page__main {
    flex: 1 0 auto;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 12.5rem;
    padding-right: var(--blog-x-gutter);
    padding-bottom: 13rem;
    padding-left: var(--blog-x-gutter);
}

@media (min-width: 1024px) {
    .blog-page__main {
        gap: 2.25rem;
        padding-top: 11.5rem;
        padding-bottom: 14.5rem;
    }
}

.blog-page__heading {
    margin: 0;
    max-width: 100%;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.15rem;
    color: #0f172a;
}

@media (min-width: 1024px) {
    .blog-page__heading {
        font-size: 4rem;
        letter-spacing: -0.06em;
        line-height: 1;
    }
}

.blog-page__feed {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: none;
}

.blog-page__post {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 1.25rem 0;
    border-top: 2px solid rgba(15, 23, 42, 0.12);
    border-bottom: 2px solid rgba(15, 23, 42, 0.12);
    color: inherit;
}

@media (min-width: 768px) {
    .blog-page__post {
        grid-template-columns: 1fr minmax(0, min(36vw, 320px));
        gap: 1.5rem 2rem;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .blog-page__post {
        padding: 1.5rem 0;
    }
}

.blog-page__post-copy {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.4rem;
    width: 100%;
    min-width: 0;
    padding: 0;
    border: none;
    border-radius: 0;
}

.blog-page__post-date {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: rgba(15, 23, 42, 0.5);
}

.blog-page__post-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-page__post-heading-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.85rem;
}

.blog-page__post-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0f172a;
    text-decoration: none;
    transition: text-decoration 0.2s ease, text-underline-offset 0.2s ease;
}

@media (min-width: 640px) {
    .blog-page__post-title {
        font-size: 28px;
    }
}

.blog-page__post-title:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.blog-page__post-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    margin-top: 2px;
    color: #0f172a;
    text-decoration: none;
    border-radius: 6px;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.blog-page__post-linkedin:hover {
    opacity: 0.75;
    background: rgba(15, 23, 42, 0.06);
}

.blog-page__post-linkedin-icon {
    width: 22px;
    height: 22px;
    display: block;
}

.blog-page__post-excerpt-hit {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-page__post-excerpt-hit:hover .blog-page__post-excerpt {
    color: #334155;
}

/* Current nav label: match regular link weight on blog page */
.blog-page .menu__center__link--current,
.blog-page .menu__list__link--current {
    font-weight: 400;
}

.blog-page__post-excerpt {
    margin: 0;
    padding-right: 0;
    max-width: 28rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 15px;
    line-height: 1.45;
    color: #475569;
}

.blog-page__post-media {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 0 0;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    justify-self: end;
    text-decoration: none;
    color: inherit;
}

.blog-page__post-media:hover .blog-page__post-image {
    opacity: 0.94;
}

@media (max-width: 767px) {
    .blog-page__post-media {
        max-width: 240px;
        justify-self: end;
    }
}

.blog-page__post-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.2s ease;
}

@media (min-width: 768px) {
    .blog-page__post-media {
        max-width: none;
        width: 100%;
        margin: 0;
    }
}

/* Blog article (single post) */
.blog-post {
    flex: 1 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding-top: 12.5rem;
    padding-right: var(--blog-x-gutter);
    padding-left: var(--blog-x-gutter);
}

@media (min-width: 1024px) {
    .blog-post {
        padding-top: 11.5rem;
    }
}

.blog-post__article {
    width: 100%;
    margin: 0;
}

.blog-post__hero {
    margin: 0 auto 2rem;
    padding: 0;
    width: 100%;
    max-width: 42rem;
    overflow: hidden;
    border-radius: 6px;
    box-sizing: border-box;
}

.blog-post__hero img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(520px, 62vh);
    object-fit: cover;
    object-position: center;
}

.blog-post__inner {
    max-width: 42rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 9.5rem;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .blog-post__inner {
        padding: 0 0 11.5rem;
    }
}

.blog-post__back {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #64748b;
    text-decoration: none;
}

.blog-post__back:hover {
    color: #0f172a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-post__meta {
    margin: 0 0 0.35rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: rgba(15, 23, 42, 0.5);
}

.blog-post__heading-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.85rem;
    margin: 0 0 1.75rem;
}

.blog-post__title {
    margin: 0;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.blog-post__linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: #0f172a;
    text-decoration: none;
    border-radius: 8px;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.blog-post__linkedin:hover {
    opacity: 0.8;
    background: rgba(15, 23, 42, 0.06);
}

.blog-post__linkedin-icon {
    width: 26px;
    height: 26px;
    display: block;
}

.blog-post__body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: #334155;
}

.blog-post__body p {
    margin: 0 0 1.15em;
}

.blog-post__body p:last-child {
    margin-bottom: 0;
}

.blog-post__list {
    margin: 1rem 0 1.25rem;
    padding-left: 0;
    list-style: none;
}

.blog-post__list li {
    margin-bottom: 0.65em;
    padding-left: 0;
    position: relative;
}

.blog-post__list li:last-child {
    margin-bottom: 0;
}

/* Footer Section */
.footer-section {
    width: 100%;
    background: #000;
    padding: 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Shadow-officer CTA band above links (extends footer height) */
.footer-section__visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 168px 40px 76px;
    background: #000;
    box-sizing: border-box;
}

.footer-section__wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 80px 40px 120px;
    box-sizing: border-box;
}

.footer-section__watermark {
    position: absolute;
    left: 140px;
    right: 32px;
    bottom: -58px;
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(92px, 20vw, 280px);
    line-height: 0.85;
    letter-spacing: -0.03em;
    color: #fff;
    opacity: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
}

.footer-section__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 64px;
    padding-bottom: 112px;
}

.footer-section__branding {
    flex: 0 0 auto;
    position: relative;
    z-index: 3;
}

.footer-section__copyright {
    margin-top: 16px;
    margin-left: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-section__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.footer-section__logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 6px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

.footer-section__logo-text {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

.footer-section__navigation {
    display: flex;
    gap: 80px;
}

.footer-section__nav-column {
    display: flex;
    flex-direction: column;
}

.footer-section__nav-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    position: relative;
    padding-top: 12px;
}

.footer-section__nav-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: #999;
}

.footer-section__nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section__nav-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-section__nav-link:hover {
    opacity: 0.7;
}

.footer-section__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 56px;
}

.footer-section__form-section {
    flex: 0 0 auto;
    max-width: 500px;
}

.footer-section__form-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 12px 0;
}

.footer-section__form-title a {
    transition: color 0.2s ease;
}

.footer-section__form-title a:hover {
    color: #e8e8e8 !important;
}

.footer-section__email {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    color: #fff;
    margin-top: 8px;
    transition: color 0.2s ease;
}

.footer-section__email:hover {
    color: #e8e8e8;
}

.footer-section__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-section__form-row {
    display: flex;
    gap: 16px;
}

.footer-section__input {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    padding: 14px 16px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s ease;
}

.footer-section__input::placeholder {
    color: #666;
}

.footer-section__input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-section__input--half {
    flex: 1;
}

.footer-section__button {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 24px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-section__button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.footer-section__button:active {
    transform: translateY(0);
}

.footer-section__social {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    margin-left: auto;
}

.footer-section__branding .footer-section__social {
    margin-top: 32px;
    margin-left: 10px;
    align-items: flex-start;
    align-self: flex-start;
}

.footer-section__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-section__social-link:hover {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-section__social-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 968px) {
    .footer-section__top {
        flex-direction: column;
        gap: 60px;
    }

    .footer-section__navigation {
        gap: 60px;
        flex-wrap: wrap;
    }

    .footer-section__bottom {
        flex-direction: column;
        gap: 40px;
    }

    .footer-section__social {
        align-self: flex-start;
    }
}

@media (max-width: 640px) {
    .footer-section__visual {
        padding: 96px 20px 52px;
    }

    .footer-section__wrapper {
        padding: 60px 20px 96px;
    }

    .footer-section__top {
        margin-bottom: 48px;
        padding-bottom: 72px;
    }

    .footer-section__bottom {
        padding-top: 44px;
    }

    .footer-section__navigation {
        gap: 40px;
        width: 100%;
    }

    .footer-section__form-row {
        flex-direction: column;
    }

    .footer-section__input--half {
        width: 100%;
    }
}

/* Image Section */
.image {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.image__container {
    width: 70%;
    height: 60vh;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.image__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image__text {
    position: absolute;
    left: 40px;
    top: calc(50% - 50px);
    transform: translateY(-50%);
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    max-width: 440px;
    line-height: 1.2;
    z-index: 10;
}

.image__container .button {
    position: absolute;
    left: 40px;
    top: calc(50% + 45px);
    transform: translateY(-50%);
    z-index: 10;
    padding: 10px 24px;
    font-size: 14px;
}

.image__stats {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 74%;
    transform: translateY(-50%);
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.image__stats__item {
    background: rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 18px;
}

.image__stats__value {
    font-family: "Hedvig Letters Serif", "Hedvig Letters Serif Placeholder", serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 8px;
}

.image__stats__label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .gradient-container {
        min-height: 100vh;
        min-height: 100dvh;
        min-height: 100svh;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        min-height: 100svh;
        padding-top: calc(88px + env(safe-area-inset-top, 0px));
        padding-bottom: max(40px, env(safe-area-inset-bottom, 0px));
        align-items: center;
        justify-content: center;
    }

    .hero__wrapper {
        flex: 0 1 auto;
        padding: 0 16px;
        margin-top: 0;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .hero__title {
        margin-bottom: 32px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__mobile-break {
        display: block;
    }

    .hero__description {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 32px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__controls {
        margin-top: 24px;
        align-self: center;
    }

    .button--large {
        width: 100%;
        max-width: 300px;
        padding: 14px 32px;
        font-size: 16px;
    }

    /* Hero CTA shouldn't be full-width on mobile */
    .hero__button {
        width: auto;
        max-width: none;
    }

    /* Footer journey CTA: width follows label, not the image strip */
    .footer__journey__button {
        width: auto;
        max-width: none;
    }

    /* Improve touch targets */
    .button,
    .menu__toggle,
    .footer-section__social-link,
    .footer-section__button,
    .policy-update-card__button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Footer decorative title: ~half the wordmark below the fold (cropped by overflow) */
    .footer-section {
        padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
    }

    .footer-section__wrapper {
        padding-top: 36px;
        padding-bottom: max(64px, calc(env(safe-area-inset-bottom, 0px) + 48px));
    }

    .footer-section__top {
        padding-bottom: 36px;
        margin-bottom: 24px;
    }

    .footer-section__watermark {
        left: max(16px, env(safe-area-inset-left, 0px));
        right: max(16px, env(safe-area-inset-right, 0px));
        text-align: center;
        font-size: clamp(104px, 34vw, 260px);
        line-height: 0.85;
        bottom: 0;
        transform: translateY(34%);
        transform-origin: bottom center;
    }

    /* Better mobile table */
    .compliance-table {
        font-size: 12px;
    }

    /* Reserve consistent space so row animations don't shift content below */
    .compliance-table__row {
        height: 56px;
    }

    /* Mobile: hide Legislation + Documentation columns */
    .compliance-table th:nth-child(1),
    .compliance-table td:nth-child(1),
    .compliance-table th:nth-child(4),
    .compliance-table td:nth-child(4) {
        display: none;
    }

    /* Rebalance remaining column widths (Item, Applicability, Gap) */
    .compliance-table__header:nth-child(2),
    .compliance-table__cell:nth-child(2) {
        width: 24%;
        padding-left: 16px;
    }

    .compliance-table__header:nth-child(3),
    .compliance-table__cell:nth-child(3) {
        width: 54%;
        text-align: center;
    }

    /* Center the Applicability header label/button */
    .compliance-table__header:nth-child(3) .compliance-table__sort-btn {
        justify-content: center;
        width: 100%;
    }

    .compliance-table__header:nth-child(5),
    .compliance-table__cell:nth-child(5) {
        width: 24%;
    }

    /* Shorten long documentation titles on mobile */
    .compliance-table__documentation__text-full {
        display: none;
    }

    .compliance-table__documentation__text-short {
        display: inline;
    }

    .compliance-table__documentation {
        white-space: nowrap;
    }

    /* Show full item titles on mobile (Article 1, Article 2, ...) */
    .compliance-table__article-text-full {
        display: inline;
    }

    .compliance-table__article-text-short {
        display: none;
    }

    .compliance-table__header,
    .compliance-table__cell {
        padding: 10px 8px;
    }

    .compliance-table__framework-tag,
    .compliance-table__applicable-tag,
    .compliance-table__not-applicable-tag,
    .compliance-table__gap-tag,
    .compliance-table__no-gap-tag {
        font-size: 11px;
        padding: 3px 8px;
        white-space: nowrap;
    }

    /* Mobile compliance gap section */
    .compliance-gap,
    .compliance-gap-reversed {
        padding: 60px 20px;
    }

    .compliance-gap__heading {
        font-size: 32px;
    }

    .compliance-gap__description {
        font-size: 17px;
    }

    /* Mobile image section */
    .image {
        padding: 40px 0;
    }

    .image__container {
        width: 90%;
        height: 50vh;
        border-radius: 16px;
        background: #000;
    }

    /* Prevent 1px seams on mobile rendering */
    .image__photo {
        transform: scale(1.02);
        transform-origin: center;
    }

    .footer-section .image__text {
        display: none;
    }

    .image__container .button {
        left: 50%;
        padding: 10px 20px;
        font-size: 13px;
        transform: translate(-50%, -50%);
    }

    .footer-section .image__container .button {
        /* Keep CTA centered horizontally but slightly higher than mid-card */
        top: 44%;
    }

    /* Prevent the mobile press-state transform from dropping the translate */
    .image__container .button:active {
        transform: translate(-50%, -50%) scale(0.98);
    }

    .image__stats {
        left: 16px;
        right: 16px;
        top: 74%;
        transform: translateY(-50%);
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .image__stats__item {
        padding: 12px 14px;
    }

    .image__stats__label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .menu {
        top: 8px;
        left: 16px;
        right: 16px;
    }

    .menu__wrapper {
        padding: 10px 16px;
    }

    .menu__link {
        font-size: 20px;
    }

    .menu__logo {
        width: 40px;
        height: 40px;
    }

    .hero__wrapper {
        margin-top: 0;
        padding: 0 16px;
    }

    .logos {
        padding: 40px 16px;
    }

    .logos__item {
        padding: 0 12px;
    }

    .logos__image {
        max-width: 120px;
        max-height: 40px;
    }

    .compliance-gap-consolidated__heading,
    .compliance-gap-reversed__heading {
        font-size: 24px;
    }

    .compliance-gap-consolidated__description,
    .compliance-gap-reversed__description {
        font-size: 15px;
    }

    .policy-update-card {
        padding: 20px;
    }

    .policy-update-card__title {
        font-size: 16px;
    }

    .policy-update-card__content {
        font-size: 14px;
    }

    .review-stats-card {
        padding: 20px;
        transform: translateX(0);
    }

    .image__container {
        width: 95%;
        height: 40vh;
        border-radius: 12px;
        background: #000;
    }

    /* Prevent 1px seams on small screens */
    .image__photo {
        transform: scale(1.02);
        transform-origin: center;
    }

    .image__container .button {
        left: 50%;
        padding: 8px 16px;
        font-size: 12px;
        transform: translate(-50%, -50%);
    }

    .image__stats__value {
        font-size: clamp(30px, 9vw, 40px);
    }

    .image__stats__label {
        font-size: 13px;
    }

    .footer-section__visual {
        padding: 80px 16px 44px;
    }

    .footer-section__wrapper {
        padding: 40px 16px 80px;
    }

    .footer-section__bottom {
        padding-top: 40px;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: calc(72px + env(safe-area-inset-top, 0px)) 24px 32px;
        justify-content: center;
    }

    .hero__wrapper {
        margin-top: 0;
    }

    .compliance-gap-consolidated__text-item {
        min-height: 40vh;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .button:hover {
        transform: none;
    }

    .button:active {
        transform: scale(0.98);
    }

    /* Keep positioned CTAs from "jumping" when pressed */
    .image__container .button:active {
        transform: translateY(-50%) scale(0.98);
    }

    .menu__list__link:hover {
        color: #333;
    }

    /* Improve scrolling performance */
    * {
        -webkit-overflow-scrolling: touch;
    }

    /* Better tap highlighting */
    a, button, .menu__toggle, .menu__list__link {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
        tap-highlight-color: rgba(0, 0, 0, 0.05);
    }
}

/* Prevent text selection on interactive elements for better mobile UX */
.menu__toggle,
.button,
.policy-update-card__button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Safe area insets for devices with notches */
@supports (padding: max(0px)) {
    @media (min-width: 925px) {
        .menu {
            top: max(20px, env(safe-area-inset-top));
            left: max(68px, env(safe-area-inset-left));
            right: max(68px, env(safe-area-inset-right));
        }
    }

    @media (max-width: 924px) {
        .menu {
            top: max(10px, env(safe-area-inset-top));
            left: max(30px, env(safe-area-inset-left));
            right: max(30px, env(safe-area-inset-right));
        }
    }

    @media (min-width: 769px) {
        .hero__wrapper {
            padding-left: max(clamp(24px, 14vw + 24px, 220px), env(safe-area-inset-left));
            padding-right: max(24px, env(safe-area-inset-right));
        }
    }

    @media (max-width: 768px) {
        .hero__wrapper {
            padding-left: max(16px, env(safe-area-inset-left));
            padding-right: max(16px, env(safe-area-inset-right));
        }
    }

    @media (max-width: 480px) {
        .menu {
            top: max(8px, env(safe-area-inset-top));
            left: max(16px, env(safe-area-inset-left));
            right: max(16px, env(safe-area-inset-right));
        }

        .hero__wrapper {
            padding-left: max(16px, env(safe-area-inset-left));
            padding-right: max(16px, env(safe-area-inset-right));
        }
    }

    .footer-section__visual {
        padding-left: max(40px, env(safe-area-inset-left));
        padding-right: max(40px, env(safe-area-inset-right));
    }

    .footer-section__wrapper {
        padding-left: max(40px, env(safe-area-inset-left));
        padding-right: max(40px, env(safe-area-inset-right));
        padding-bottom: max(80px, env(safe-area-inset-bottom));
    }
}
