:root {
    --black: #070707;
    --ink: #111111;
    --muted: #737373;
    --soft: #f6f6f6;
    --line: #e8e8e8;
    --white: #ffffff;
    --accent: #e9204f;
    --accent-dark: #c9133b;
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

button,
input,
select,
textarea {
    font-family: "Roboto", Arial, sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 26px 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.36) 58%, rgba(0, 0, 0, 0));
}

.header-inner {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 28px;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    position: absolute;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
}

.brand img {
    width: 178px;
    max-height: 24px;
    height: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.nav-list li {
    position: relative;
}

.nav-list a {
    display: block;
    padding: 8px 0;
    font-family: "Overpass", Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.7);
}

.nav-list > .has-children > a {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-list .has-children > a::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: 0.75;
    transition: transform 160ms ease, opacity 160ms ease;
}

.nav-list .has-children:hover > a::after,
.nav-list .has-children:focus-within > a::after {
    opacity: 1;
    transform: rotate(225deg) translateY(-1px);
}

.nav-list a:hover,
.social-links a:hover {
    color: var(--accent);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 245px;
    margin: 14px 0 0;
    padding: 16px 0;
    list-style: none;
    color: #777777;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 160ms ease;
}

.sub-menu.nested {
    top: -16px;
    left: 100%;
    margin: 0;
}

.sub-menu .has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sub-menu .has-children > a::after {
    transform: rotate(-45deg);
}

.sub-menu .has-children:hover > a::after,
.sub-menu .has-children:focus-within > a::after {
    transform: rotate(-45deg) translateX(2px);
}

.has-children:hover > .sub-menu,
.has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu a {
    padding: 9px 20px;
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-family: "Overpass", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.social-icon {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    color: currentColor;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-icon svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.social-icon:hover,
.social-icon:focus-visible {
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 820px;
    padding: 210px 0 92px;
    color: var(--white);
    background: var(--black) url("/assets/media/hero/office-hero-fallback.jpg") center / cover no-repeat;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.04);
    transition: opacity 260ms ease;
}

.hero.is-video-playing .hero-video {
    opacity: 0.64;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.hero-content,
.feature-grid {
    position: relative;
    z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "Overpass", Arial, sans-serif;
    line-height: 1.12;
}

.cached-page,
.cached-page p,
.cached-page li,
.cached-page input,
.cached-page textarea,
.cached-page button {
    font-family: "Roboto", Arial, sans-serif !important;
}

.cached-page h1,
.cached-page h2,
.cached-page h3,
.cached-page h4,
.cached-page h5,
.cached-page h6,
.cached-page .elementor-heading-title {
    font-family: "Overpass", Arial, sans-serif !important;
}

.hero h1 {
    max-width: 820px;
    color: var(--white) !important;
    font-size: clamp(42px, 6vw, 74px);
    font-weight: 900;
}

.hero p {
    max-width: 720px;
    margin: 24px 0 0;
    color: #f1f1f1 !important;
}

.button,
.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin-top: 32px;
    padding: 18px 40px;
    border: 2px solid var(--accent);
    border-radius: 2px;
    color: var(--white);
    background: var(--accent);
    font-family: "Overpass", Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.button:hover,
.contact-form button:hover {
    color: var(--accent);
    background: var(--white);
}

.button.secondary {
    color: var(--ink);
    background: transparent;
}

.button.secondary:hover {
    color: var(--white);
    background: var(--accent);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 96px;
}

.feature-card {
    min-height: 250px;
    padding: 38px 34px;
    background: #151515;
}

.feature-card:hover {
    background: var(--accent);
}

.feature-card h3 {
    color: var(--white) !important;
    font-size: 23px;
}

.feature-card p {
    margin: 22px 0 0;
    color: #cfcfcf;
}

.feature-card:hover p {
    color: var(--white);
}

.client-strip {
    padding: 66px 0;
    background: var(--white);
}

.split-heading {
    display: grid;
    grid-template-columns: 270px 1fr;
    align-items: center;
    gap: 40px;
}

.split-heading strong {
    display: block;
    font-family: "Overpass", Arial, sans-serif;
    font-size: 26px;
    line-height: 1.2;
}

.split-heading a {
    display: inline-block;
    margin-top: 14px;
    color: var(--accent);
    font-weight: 800;
}

.logo-row,
.logo-grid {
    display: grid;
    align-items: center;
    gap: 28px;
}

.logo-row.compact {
    grid-template-columns: repeat(4, 1fr);
}

.logo-row img,
.logo-grid img {
    max-height: 76px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

.section {
    padding: 105px 0;
}

.section h2 {
    max-width: 760px;
    margin-top: 8px;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
}

.eyebrow {
    margin: 0;
    color: var(--accent);
    font-family: "Overpass", Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services {
    background: var(--soft);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.service-group {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--line);
}

.service-group h4 {
    margin-bottom: 26px;
    font-size: 23px;
}

.service-link {
    display: block;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.service-link h5 {
    font-size: 22px;
}

.service-link:hover h5 {
    color: var(--accent);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 70px;
    align-items: center;
}

.about-copy .about-title {
    font-size: clamp(32px, 4vw, 48px);
}

.about-copy .about-subtitle {
    margin-top: 16px;
    color: var(--accent);
    font-size: 25px;
}

.about-copy p {
    color: var(--muted);
}

.image-stack {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 22px;
    align-items: end;
}

.image-stack img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.image-stack img:last-child {
    margin-bottom: -34px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 92px;
}

.values-grid h3 {
    font-size: 24px;
}

.values-grid p {
    color: var(--muted);
}

.cases {
    background: var(--black);
    color: var(--white);
}

.cases > .container > h2 {
    color: var(--white) !important;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.case-card {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.case-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.9));
}

.case-card > div {
    position: relative;
    z-index: 1;
    padding: 32px;
}

.case-card h2 {
    color: var(--white) !important;
    font-size: 28px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.case-card p {
    min-height: 130px;
    color: #f1f1f1 !important;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.case-card a,
.read-more {
    color: var(--accent);
    font-family: "Overpass", Arial, sans-serif;
    font-weight: 900;
}

.reviews {
    background: var(--white);
}

.review-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.review-card {
    padding: 34px;
    background: var(--soft);
    border: 1px solid var(--line);
}

.stars {
    color: var(--accent);
    font-family: "Overpass", Arial, sans-serif;
    font-weight: 900;
}

.stars span {
    color: var(--muted);
    font-size: 13px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.review-author img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author strong,
.review-author span {
    display: block;
}

.review-author span {
    color: var(--muted);
}

.logo-wall {
    color: var(--white);
    background: var(--black);
}

.logo-wall h2 {
    color: var(--white) !important;
}

.logo-grid {
    grid-template-columns: repeat(6, 1fr);
    margin-top: 55px;
}

.blog {
    background: var(--soft);
}

.post-card {
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.post-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.post-card h2 {
    margin: 12px 26px 0;
    font-size: 25px;
}

.post-card p {
    margin: 16px 26px 0;
    color: var(--muted);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 20px 26px 0;
    color: var(--muted);
    font-family: "Overpass", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.post-meta span + time::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 10px 2px 0;
    border-radius: 50%;
    background: var(--accent);
}

.post-card .read-more {
    display: inline-block;
    align-self: flex-start;
    margin: 20px 26px 28px;
    margin-top: auto;
}

.blog-archive-hero,
.article-hero {
    padding: 170px 0 76px;
    color: var(--white);
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), url("/assets/media/brand/trendflow-office-hero.jpg") center / cover no-repeat;
}

.blog-archive-hero h1,
.article-hero h1 {
    max-width: 980px;
    color: var(--white);
    font-size: clamp(42px, 5.6vw, 72px);
    font-weight: 900;
}

.article-hero .article-excerpt {
    max-width: 780px;
    margin: 26px 0 0;
    color: #eeeeee;
    font-size: 19px;
}

.article-hero .article-meta {
    margin: 28px 0 0;
    color: #ffffff;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) 320px;
    gap: 68px;
    align-items: start;
    padding: 86px 0 76px;
}

.article-main {
    min-width: 0;
}

.article-share {
    display: flex;
    gap: 10px;
    margin-bottom: 34px;
}

.article-share .social-icon {
    color: var(--ink);
    border-color: var(--line);
}

.article-share .social-icon:hover,
.article-share .social-icon:focus-visible {
    color: var(--white);
}

.article-share-x {
    font-family: "Overpass", Arial, sans-serif;
    font-size: 14px;
    font-weight: 900;
}

.article-content {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 18px;
}

.article-content h2 {
    margin-top: 44px;
    font-size: 34px;
}

.article-content h3,
.article-content h4,
.article-content h5 {
    margin-top: 34px;
    font-size: 24px;
}

.article-content p {
    margin: 22px 0 0;
}

.article-content ul,
.article-content ol {
    margin: 22px 0 0;
    padding-left: 24px;
}

.article-content img {
    width: 100%;
    height: auto;
    margin: 32px 0;
}

.article-cta {
    margin-top: 42px;
}

.article-cta hr {
    margin: 0 0 22px;
    border: 0;
    border-top: 1px solid var(--line);
}

.article-cta a,
.article-content a {
    color: var(--accent);
    font-weight: 700;
}

.article-sidebar {
    position: sticky;
    top: 30px;
}

.author-box,
.related-posts {
    border: 1px solid var(--line);
    background: var(--white);
}

.author-box {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 24px;
}

.author-box img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box h2 {
    font-size: 21px;
}

.author-box p {
    margin: 5px 0 0;
    color: var(--muted);
}

.related-posts {
    margin-top: 28px;
    padding: 26px;
}

.related-posts h2 {
    font-size: 22px;
}

.related-posts article {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid var(--line);
}

.related-posts h3 {
    font-size: 18px;
    line-height: 1.25;
}

.related-posts .post-meta {
    margin: 10px 0 0;
    font-size: 12px;
}

.related-posts p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.article-navigation div:last-child {
    text-align: right;
}

.article-navigation a {
    font-family: "Overpass", Arial, sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.cta-contact {
    padding-bottom: 96px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.cta-grid img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.cta-grid p {
    color: var(--muted);
}

.contact-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    margin-top: 80px;
    padding: 55px;
    color: var(--white);
    background: var(--black);
}

.contact-panel h2 {
    font-size: 34px;
}

.contact-panel p {
    color: #dddddd;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    color: #d7d7d7;
    font-size: 14px;
}

.contact-form input {
    min-height: 54px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    padding: 0 15px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    font: inherit;
}

.contact-form button {
    width: fit-content;
    margin-top: 8px;
}

.hp {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.form-status {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-left: 4px solid var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.site-footer {
    padding: 82px 0 34px;
    color: var(--white);
    background: #0b0b0b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.footer-grid h2 {
    font-size: 34px;
}

.footer-grid p {
    color: #d7d7d7;
}

.copyright {
    margin-top: 58px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a7a7a7;
    font-size: 14px;
}

.cached-page {
    overflow: hidden;
}

.cached-page .section {
    padding: 0;
}

.cached-page .elementor-section.elementor-section-boxed > .elementor-container {
    width: min(var(--max), calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.cached-page .elementor a {
    text-decoration: none;
}

.cached-page .elementor-invisible {
    visibility: visible;
}

.cached-page .elementor img {
    height: auto;
}

.cached-page .elementor-video,
.cached-page video {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
}

.cached-page .elementor-widget-video,
.cached-page .e-hosted-video,
.cached-page .elementor-wrapper,
.cached-page .elementor-widget-call-to-action,
.cached-page .elementor-cta,
.cached-page .elementor-cta__content {
    max-width: 100% !important;
    overflow: hidden;
}

.cached-page .elementor-cta {
    width: 100% !important;
}

.cached-page > .elementor > .elementor-section:has(img[src*="/logos/"]),
.cached-page > .elementor > .elementor-section:has(img[src*="/home/logo"]),
.cached-page > .elementor > .elementor-section:has(img[src*="/home/image"]) {
    color: var(--white);
    background: var(--black) !important;
}

.cached-page > .elementor > .elementor-section:has(img[src*="/logos/"]) .elementor-heading-title,
.cached-page > .elementor > .elementor-section:has(img[src*="/logos/"]) .elementor-widget-heading *,
.cached-page > .elementor > .elementor-section:has(img[src*="/logos/"]) .elementor-widget-text-editor,
.cached-page > .elementor > .elementor-section:has(img[src*="/logos/"]) .elementor-widget-text-editor *,
.cached-page > .elementor > .elementor-section:has(img[src*="/home/logo"]) .elementor-heading-title,
.cached-page > .elementor > .elementor-section:has(img[src*="/home/logo"]) .elementor-widget-heading *,
.cached-page > .elementor > .elementor-section:has(img[src*="/home/logo"]) .elementor-widget-text-editor,
.cached-page > .elementor > .elementor-section:has(img[src*="/home/logo"]) .elementor-widget-text-editor *,
.cached-page > .elementor > .elementor-section:has(img[src*="/home/image"]) .elementor-heading-title,
.cached-page > .elementor > .elementor-section:has(img[src*="/home/image"]) .elementor-widget-heading *,
.cached-page > .elementor > .elementor-section:has(img[src*="/home/image"]) .elementor-widget-text-editor,
.cached-page > .elementor > .elementor-section:has(img[src*="/home/image"]) .elementor-widget-text-editor * {
    color: var(--white) !important;
}

.cached-page > .elementor > .elementor-section:has(img[src*="/logos/"]) img,
.cached-page > .elementor > .elementor-section:has(img[src*="/home/logo"]) img,
.cached-page > .elementor > .elementor-section:has(img[src*="/home/image"]) img {
    opacity: 0.86;
    filter: grayscale(1) brightness(0) invert(1);
}

.cached-page #pr_hero {
    position: relative !important;
    isolation: isolate;
    overflow: hidden;
    margin-top: 0 !important;
    padding-top: 140px !important;
    padding-bottom: 95px !important;
}

.cached-page #pr_hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.54) 46%, rgba(0, 0, 0, 0.34)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.14) 42%, rgba(0, 0, 0, 0.42));
}

.cached-page #pr_hero > .elementor-container {
    position: relative;
    z-index: 1;
    min-height: 220px !important;
}

.cached-page #pr_hero h1 {
    margin-top: 0 !important;
}

.cached-page > .elementor > .elementor-section:first-child:not(#pr_hero):has(.elementor-background-overlay) {
    position: relative !important;
    isolation: isolate;
    overflow: hidden;
}

.cached-page > .elementor > .elementor-section:first-child:not(#pr_hero):has(.elementor-background-overlay)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.46));
}

.cached-page > .elementor > .elementor-section:first-child:not(#pr_hero):has(.elementor-background-overlay) > .elementor-container {
    position: relative;
    z-index: 1;
}

.cached-page > .elementor > .elementor-section:first-child:not(#pr_hero):has(.elementor-background-overlay) h1,
.cached-page > .elementor > .elementor-section:first-child:not(#pr_hero):has(.elementor-background-overlay) h2,
.cached-page > .elementor > .elementor-section:first-child:not(#pr_hero):has(.elementor-background-overlay) p,
.cached-page > .elementor > .elementor-section:first-child:not(#pr_hero):has(.elementor-background-overlay) a {
    color: var(--white) !important;
}

.cached-page > .elementor > .e-con:first-child {
    position: relative !important;
    isolation: isolate;
    overflow: hidden;
}

.cached-page > .elementor > .e-con:first-child::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.48));
}

.cached-page > .elementor > .e-con:first-child > * {
    position: relative;
    z-index: 1;
}

.cached-page > .elementor > .e-con:first-child h1,
.cached-page > .elementor > .e-con:first-child h2,
.cached-page > .elementor > .e-con:first-child p,
.cached-page > .elementor > .e-con:first-child a {
    color: var(--white) !important;
}

.cached-page .elementor-widget-divider,
.cached-page .elementor-divider,
.cached-page .elementor-divider-separator {
    display: none !important;
}

.cached-page--customers {
    background: var(--black);
}

.cached-page--customers #pr_hero {
    display: grid;
    align-items: center;
    min-height: 520px;
    padding-top: 150px !important;
    padding-bottom: 90px !important;
}

.cached-page--customers #pr_hero > .elementor-container,
.cached-page--customers > .elementor > .elementor-section > .elementor-container,
.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) > .elementor-container {
    width: min(1160px, calc(100% - 80px)) !important;
    max-width: 1160px !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.cached-page--customers #pr_hero h1,
.cached-page--customers #pr_hero .elementor-heading-title {
    color: var(--white) !important;
    font-family: "Overpass", Arial, sans-serif !important;
    font-size: clamp(48px, 6vw, 72px) !important;
    font-weight: 900 !important;
    line-height: 1.04 !important;
}

.cached-page--customers #pr_hero p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.92) !important;
    font-family: "Roboto", Arial, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.75 !important;
}

.cached-page--customers > .elementor > .elementor-section:not(#pr_hero) {
    padding: 90px 0 !important;
    background: var(--black) !important;
}

.cached-page--customers .elementor-widget-wrap {
    padding: 0 !important;
}

.cached-page--customers .elementor-section .elementor-widget-heading h2,
.cached-page--customers .elementor-section .elementor-widget-heading h3,
.cached-page--customers .elementor-section .elementor-widget-heading h4,
.cached-page--customers .elementor-section .elementor-widget-heading .elementor-heading-title {
    color: var(--white) !important;
    font-family: "Overpass", Arial, sans-serif !important;
}

.cached-page--customers > .elementor > .elementor-section:not(#pr_hero) > .elementor-container > .elementor-column {
    width: 100% !important;
}

.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) {
    margin: 0 0 28px !important;
    padding: 0 !important;
}

.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) > .elementor-container {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) .elementor-column {
    position: relative;
    display: flex;
    width: auto !important;
    min-width: 0;
    min-height: 380px;
    overflow: hidden;
    background-position: center !important;
    background-size: cover !important;
}

.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) .elementor-column::before {
    content: none;
}

.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) .elementor-widget-wrap {
    position: relative;
    z-index: 1;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    min-height: 380px;
    overflow: hidden;
    padding: 44px 48px !important;
    background-position: center !important;
    background-size: cover !important;
}

.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) .elementor-widget-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.48));
}

.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) .elementor-widget-wrap > .elementor-element {
    position: relative;
    z-index: 1;
}

.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) h2,
.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) h3,
.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) h4,
.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) .elementor-heading-title {
    margin: 0 0 14px !important;
    color: var(--white) !important;
    font-family: "Overpass", Arial, sans-serif !important;
    font-size: clamp(30px, 3vw, 42px) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) .elementor-widget-text-editor,
.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) .elementor-widget-text-editor p,
.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) p {
    max-width: 560px;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-family: "Roboto", Arial, sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.75 !important;
}

.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) a {
    display: inline-flex;
    width: fit-content;
    margin-top: 28px;
    color: var(--white) !important;
    font-family: "Overpass", Arial, sans-serif !important;
    font-size: 18px;
    font-weight: 900;
}

.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) a:hover,
.cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) a:focus-visible {
    color: var(--accent) !important;
}

.cached-page--customers > .elementor > .elementor-section:not(#pr_hero):has(img[src*="/reviews/"]) {
    color: var(--ink);
    background: var(--white) !important;
    padding-top: 72px !important;
    padding-bottom: 88px !important;
}

.cached-page--customers > .elementor > .elementor-section:has(img[src*="/reviews/"]) > .elementor-container {
    display: block !important;
}

.cached-page--customers > .elementor > .elementor-section:has(img[src*="/reviews/"]) > .elementor-container > .elementor-column {
    width: 100% !important;
}

.cached-page--customers > .elementor > .elementor-section:has(img[src*="/reviews/"]) .elementor-widget-wrap {
    display: block !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.cached-page--customers > .elementor > .elementor-section:has(img[src*="/reviews/"]) .elementor-heading-title,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/reviews/"]) h2,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/reviews/"]) h3,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/reviews/"]) h4 {
    color: var(--ink) !important;
}

.cached-page--customers > .elementor > .elementor-section:has(img[src*="/reviews/"]) .elementor-widget-text-editor,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/reviews/"]) .elementor-widget-text-editor p,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/reviews/"]) p {
    color: #2d2d2d !important;
    font-family: "Roboto", Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
}

.cached-page--customers .elementor-inner-section:has(img[src*="/reviews/"]) {
    margin-top: 44px !important;
}

.cached-page--customers .elementor-inner-section:has(img[src*="/reviews/"]) > .elementor-container {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100% !important;
    max-width: none !important;
}

.cached-page--customers .elementor-inner-section:has(img[src*="/reviews/"]) .elementor-column {
    width: auto !important;
    min-width: 0;
}

.cached-page--customers .elementor-inner-section:has(img[src*="/reviews/"]) .elementor-column > .elementor-widget-wrap {
    display: flex !important;
    min-height: 100%;
    flex-direction: column;
    padding: 34px !important;
    background: var(--soft) !important;
    border: 1px solid var(--line) !important;
}

.cached-page--customers .elementor-inner-section:has(img[src*="/reviews/"]) .elementor-column > .elementor-widget-wrap > .elementor-element:first-child,
.cached-page--customers .elementor-inner-section:has(img[src*="/reviews/"]) .elementor-column > .elementor-widget-wrap > .elementor-element:first-child * {
    color: var(--accent) !important;
}

.cached-page--customers .elementor-inner-section:has(img[src*="/reviews/"]) .elementor-widget-heading:first-child .elementor-heading-title,
.cached-page--customers .elementor-inner-section:has(img[src*="/reviews/"]) .elementor-widget-heading:first-child h3,
.cached-page--customers .elementor-inner-section:has(img[src*="/reviews/"]) .elementor-widget-heading:first-child h4,
.cached-page--customers .elementor-inner-section:has(img[src*="/reviews/"]) .elementor-widget-heading:first-child p {
    color: var(--accent) !important;
    font-family: "Overpass", Arial, sans-serif !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
}

.cached-page--customers .elementor-inner-section:has(img[src*="/reviews/"]) img {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50%;
    object-fit: cover;
}

.cached-page--customers > .elementor > .elementor-section:has(img[src*="/logos/"]),
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/logo"]),
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/image"]) {
    color: var(--white);
    background: var(--black) !important;
}

.cached-page--customers > .elementor > .elementor-section:has(img[src*="/logos/"]) .elementor-heading-title,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/logo"]) .elementor-heading-title,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/image"]) .elementor-heading-title {
    color: var(--white) !important;
}

.cached-page--customers > .elementor > .elementor-section:has(img[src*="/logos/"]) .elementor-widget-text-editor,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/logos/"]) .elementor-widget-text-editor *,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/logo"]) .elementor-widget-text-editor,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/logo"]) .elementor-widget-text-editor *,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/image"]) .elementor-widget-text-editor,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/image"]) .elementor-widget-text-editor * {
    color: var(--white) !important;
}

.cached-page--customers > .elementor > .elementor-section:has(img[src*="/logos/"]) > .elementor-container:has(> .elementor-column:nth-child(2)),
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/logo"]) > .elementor-container:has(> .elementor-column:nth-child(2)),
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/image"]) > .elementor-container:has(> .elementor-column:nth-child(2)) {
    display: grid !important;
    grid-template-columns: minmax(220px, 1.45fr) repeat(4, minmax(110px, 1fr));
    gap: 24px;
    align-items: center;
}

.cached-page--customers > .elementor > .elementor-section:has(img[src*="/logos/"]) > .elementor-container:has(> .elementor-column:nth-child(2)) > .elementor-column,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/logo"]) > .elementor-container:has(> .elementor-column:nth-child(2)) > .elementor-column,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/image"]) > .elementor-container:has(> .elementor-column:nth-child(2)) > .elementor-column {
    width: auto !important;
}

.cached-page--customers > .elementor > .elementor-section:has(img[src*="/logos/"]) .elementor-inner-section > .elementor-container,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/logo"]) .elementor-inner-section > .elementor-container,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/image"]) .elementor-inner-section > .elementor-container {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
}

.cached-page--customers > .elementor > .elementor-section:has(img[src*="/logos/"]) .elementor-inner-section .elementor-column,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/logo"]) .elementor-inner-section .elementor-column,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/image"]) .elementor-inner-section .elementor-column {
    width: auto !important;
}

.cached-page--customers > .elementor > .elementor-section:has(img[src*="/logos/"]) img,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/logo"]) img,
.cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/image"]) img {
    width: auto !important;
    max-width: min(150px, 100%) !important;
    max-height: 54px !important;
    margin-right: auto;
    margin-left: auto;
    opacity: 0.86;
    filter: grayscale(1) brightness(0) invert(1);
    object-fit: contain;
}

.cached-page--customers .elementor-divider,
.cached-page--customers .elementor-widget-divider {
    display: none;
}

.cached-page .elementor-widget-icon .fa-star::before {
    content: "★";
    display: block;
    color: currentColor;
    font-family: Arial, sans-serif;
    font-size: 24px;
    line-height: 1;
}

.cached-page--case {
    background: var(--white);
}

.cached-page--case #pr_hero {
    display: grid;
    align-items: center;
    min-height: 560px;
    padding-top: 150px !important;
    padding-bottom: 100px !important;
}

.cached-page--case #pr_hero > .elementor-container {
    width: min(1160px, calc(100% - 80px));
    min-height: 0 !important;
}

.cached-page--case #pr_hero .elementor-widget-wrap {
    display: block !important;
    text-align: left !important;
}

.cached-page--case #pr_hero h1 {
    max-width: 760px;
    color: var(--white) !important;
    background: transparent !important;
    font-family: "Overpass", Arial, sans-serif !important;
    font-size: clamp(48px, 6vw, 72px) !important;
    font-weight: 900 !important;
    line-height: 1.02 !important;
}

.cached-page--case #pr_hero .banner,
.cached-page--case #pr_hero .banner-inner,
.cached-page--case #pr_hero .banner-layers,
.cached-page--case #pr_hero .text-box,
.cached-page--case #pr_hero .text-box-content,
.cached-page--case #pr_hero .text-inner {
    position: static !important;
    inset: auto !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    transform: none !important;
    text-align: left !important;
}

.cached-page--case #pr_hero .banner p,
.cached-page--case #pr_hero .elementor-widget-text-editor p {
    max-width: 860px;
    margin: 22px 0 0 !important;
    color: rgba(255, 255, 255, 0.94) !important;
    background: transparent !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
}

.cached-page--case #pr_hero .section {
    display: none;
}

.cached-page--case > .elementor > .elementor-section:not(#pr_hero) {
    padding: 82px 0 !important;
}

.cached-page--case > .elementor > .elementor-section:nth-of-type(even):not(#pr_hero) {
    background: #f8f8f8;
}

.cached-page--case > .elementor > .elementor-section > .elementor-container {
    width: min(1160px, calc(100% - 80px)) !important;
    max-width: 1160px !important;
}

.cached-page--case > .elementor > .elementor-section > .elementor-container:has(> .elementor-column:nth-child(2)) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}

.cached-page--case .elementor-column {
    width: auto !important;
    min-width: 0;
}

.cached-page--case .elementor-widget-wrap {
    padding: 0 !important;
}

.cached-page--case .elementor-widget-divider {
    margin-bottom: 18px;
}

.cached-page--case .elementor-divider {
    padding: 0 !important;
}

.cached-page--case .elementor-divider-separator {
    width: 44px !important;
    border-color: var(--accent) !important;
    border-top-width: 3px !important;
}

.cached-page--case h2.elementor-heading-title,
.cached-page--case h3.elementor-heading-title,
.cached-page--case h4.elementor-heading-title,
.cached-page--case h5.elementor-heading-title {
    font-family: "Overpass", Arial, sans-serif !important;
    letter-spacing: 0 !important;
}

.cached-page--case h4.elementor-heading-title {
    color: var(--ink) !important;
    font-size: clamp(34px, 4vw, 48px) !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
}

.cached-page--case h5.elementor-heading-title {
    color: var(--accent) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
    line-height: 1.3 !important;
    text-transform: uppercase;
}

.cached-page--case .elementor-widget-text-editor,
.cached-page--case .elementor-widget-text-editor p {
    color: #333333 !important;
    font-family: "Roboto", Arial, sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.82 !important;
}

.cached-page--case .elementor-widget-text-editor p {
    margin: 0 0 20px !important;
}

.cached-page--case .elementor-widget-image img {
    width: 100%;
    object-fit: cover;
}

.cached-page--case .pr__section {
    position: relative;
}

.cached-page--case .pr__section::before {
    content: none;
}

.cached-page--case .pr__section h3.elementor-heading-title,
.cached-page--case .pr__section h4.elementor-heading-title {
    font-size: clamp(34px, 4vw, 50px) !important;
    font-weight: 900 !important;
    line-height: 1.14 !important;
}

.cached-page--case .pr__section .elementor-widget-heading p.elementor-heading-title {
    color: #54595f !important;
    font-family: "Roboto", Arial, sans-serif !important;
    font-size: clamp(19px, 2vw, 23px) !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
}

.cached-page--case .pr__section > .elementor-container:not(:has(> .elementor-column:nth-child(2))) > .elementor-column {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 !important;
    background: transparent;
    border: 0;
}

.cached-page--case .pr__section > .elementor-container:not(:has(> .elementor-column:nth-child(2))) .elementor-widget-image img {
    width: auto;
    max-width: 170px;
    max-height: 48px;
    object-fit: contain;
}

.cached-page--case .pr__section > .elementor-container:not(:has(> .elementor-column:nth-child(2))) h5.elementor-heading-title {
    margin-top: 22px;
}

.cached-page--case .pr__section .elementor-widget-heading p.elementor-heading-title span,
.cached-page--case .pr__section .elementor-widget-heading p.elementor-heading-title b {
    font-size: inherit !important;
    line-height: inherit !important;
}

.cached-page--case .pr__section .elementor-widget-heading p.elementor-heading-title b {
    font-weight: 500 !important;
}

.cached-page--case .pr__section h3.elementor-heading-title {
    color: var(--accent) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1.45 !important;
}

.cached-page--case .elementor-widget-icon {
    display: inline-block;
    margin-right: 8px;
}

.cached-page--case .elementor-widget-icon .elementor-icon {
    color: #e6c305 !important;
}

.cached-page--case .elementor-widget-icon .fa-star::before {
    color: #e6c305;
}

.cached-page #pr_blog {
    padding: 100px 0 !important;
    background: var(--soft) !important;
}

.cached-page #pr_blog h4 {
    color: var(--accent) !important;
    font-family: "Overpass", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
    text-align: center;
    text-transform: uppercase;
}

.cached-page #pr_blog h2,
.cached-page #pr_blog h2.elementor-heading-title {
    max-width: 760px;
    margin: 12px auto 0;
    color: var(--ink) !important;
    font-size: clamp(36px, 4vw, 56px) !important;
    line-height: 1.1 !important;
    text-align: center;
}

.cached-page #pr_blog .pr-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 52px;
}

.cached-page #pr_blog .pr-grid-post,
.cached-page #pr_blog .pr-grid-post-holder,
.cached-page #pr_blog .pr-grid-post-holder-inner {
    min-width: 0;
    height: 100%;
}

.cached-page #pr_blog .pr-grid-post-holder-inner {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
}

.cached-page #pr_blog .pr-entry-thumbnail img {
    width: 100% !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.cached-page #pr_blog .pr-entry-wrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px;
}

.cached-page #pr_blog .pr-entry-title {
    margin: 0 !important;
    font-size: 25px !important;
    line-height: 1.18 !important;
}

.cached-page #pr_blog .pr-entry-title,
.cached-page #pr_blog .pr-entry-title a,
.cached-page #pr_blog .pr-entry-title * {
    color: var(--ink) !important;
}

.cached-page #pr_blog .pr-grid-post-excerpt {
    margin-top: 16px;
    color: var(--muted);
}

.cached-page #pr_blog .pr-grid-post-excerpt p {
    margin: 0;
}

.cached-page #pr_blog .pr-readmore-warp {
    margin-top: auto;
    padding-top: 20px;
}

.cached-page #pr_blog .pr-readmore-btn {
    color: var(--accent) !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    font-family: "Overpass", Arial, sans-serif !important;
    font-weight: 900 !important;
}

.cached-page #pr_blog .pr-button {
    color: var(--white) !important;
    background: var(--accent) !important;
    border: 2px solid var(--accent) !important;
}

.cached-page #pr_blog .pr-button:hover,
.cached-page #pr_blog .pr-button:focus-visible {
    color: var(--accent) !important;
    background: var(--white) !important;
}

.cached-page .elementor-element-5f5b6e7d,
.cached-page .elementor-element-5f5b6e7d .elementor-widget-wrap,
.cached-page .elementor-element-5f5b6e7d .elementor-icon-box-title,
.cached-page .elementor-element-5f5b6e7d .elementor-icon-box-title span {
    color: var(--white) !important;
}

.cached-page .elementor-element-5f5b6e7d .elementor-icon-box-description,
.cached-page .elementor-element-5f5b6e7d a {
    color: #d7d7d7 !important;
}

.cached-page .contact-icon-box .elementor-icon-box-icon {
    display: none;
}

.cached-page .trendflow-about-copy {
    margin-right: auto;
    margin-left: auto;
}

.cached-page .trendflow-about-copy .elementor-widget-wrap {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.cached-page .trendflow-about-copy p {
    font-size: 17px;
    line-height: 1.8;
}

.cached-page .trendflow-team-photo {
    margin-top: 56px;
}

.cached-page .trendflow-team-photo .elementor-container {
    max-width: 1120px;
}

.cached-page .trendflow-team-photo .elementor-widget-container {
    width: 100%;
    overflow: hidden;
    background: #111111;
}

.cached-page .trendflow-team-photo img {
    width: 100% !important;
    max-width: none !important;
    height: auto;
}

.image-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 220px;
    padding: 24px;
    color: rgba(255, 255, 255, 0.75);
    background: #151515;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-family: "Overpass", Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
}

.logo-grid .image-placeholder,
.logo-row .image-placeholder {
    min-height: 76px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
}

.not-found-page {
    min-height: 520px;
    padding: 180px 0 100px;
}

.not-found-page h1 {
    font-size: clamp(38px, 5vw, 64px);
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
}

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

    .header-social {
        display: none;
    }

    .nav-list {
        justify-content: flex-end;
        gap: 20px;
    }

    .feature-grid,
    .case-grid,
    .review-grid,
    .blog-grid,
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .cached-page #pr_blog .pr-post-grid {
        grid-template-columns: 1fr 1fr;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .article-sidebar {
        position: static;
    }

    .related-posts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .related-posts h2 {
        grid-column: 1 / -1;
    }

    .related-posts article {
        margin-top: 0;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, var(--max));
    }

    .site-header {
        position: relative;
        padding: 18px 0;
        background: var(--black);
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 16px;
    }

    .brand img {
        width: 180px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .split-heading,
    .service-grid,
    .about-grid,
    .values-grid,
    .case-grid,
    .review-grid,
    .logo-row.compact,
    .logo-grid,
    .blog-grid,
    .cta-grid,
    .contact-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
        grid-column: 1 / -1;
        padding-top: 12px;
    }

    .site-header.is-menu-open .main-nav {
        display: block;
    }

    .nav-list {
        display: grid;
        justify-content: stretch;
        gap: 0;
    }

    .nav-list a {
        padding: 10px 0;
    }

    .sub-menu,
    .sub-menu.nested {
        position: static;
        min-width: 0;
        margin: 0;
        padding: 4px 0 6px 16px;
        color: #d6d6d6;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .hero {
        min-height: auto;
        padding: 96px 0 58px;
    }

    .hero-video {
        display: none;
    }

    .blog-archive-hero,
    .article-hero {
        padding: 86px 0 58px;
    }

    .article-layout {
        padding: 58px 0;
    }

    .article-content {
        font-size: 17px;
    }

    .article-hero h1 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .related-posts {
        grid-template-columns: 1fr;
    }

    .article-navigation {
        grid-template-columns: 1fr;
    }

    .article-navigation div:last-child {
        text-align: left;
    }

    .cached-page #pr_hero {
        padding-top: 86px !important;
        padding-bottom: 58px !important;
    }

    .cached-page #pr_hero > .elementor-container {
        min-height: 0 !important;
    }

    .cached-page--case #pr_hero {
        min-height: 0;
        padding-top: 92px !important;
        padding-bottom: 70px !important;
    }

    .cached-page--case #pr_hero > .elementor-container,
    .cached-page--case > .elementor > .elementor-section > .elementor-container {
        width: min(100% - 32px, 1160px) !important;
    }

    .cached-page--case > .elementor > .elementor-section:not(#pr_hero) {
        padding: 72px 0 !important;
    }

    .cached-page--case > .elementor > .elementor-section > .elementor-container:has(> .elementor-column:nth-child(2)) {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cached-page--customers #pr_hero > .elementor-container,
    .cached-page--customers > .elementor > .elementor-section > .elementor-container,
    .cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) > .elementor-container {
        width: min(100% - 32px, 1160px) !important;
    }

    .cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) > .elementor-container {
        grid-template-columns: 1fr;
    }

    .cached-page--customers .elementor-inner-section:has(a[href^="/kunder/"]) .elementor-widget-wrap {
        min-height: 330px;
        padding: 30px 26px !important;
    }

    .cached-page--customers .elementor-inner-section:has(img[src*="/reviews/"]) > .elementor-container {
        grid-template-columns: 1fr;
    }

    .cached-page--customers .elementor-inner-section:has(img[src*="/reviews/"]) .elementor-column > .elementor-widget-wrap {
        min-height: 0;
        padding: 28px !important;
    }

    .cached-page--customers > .elementor > .elementor-section:has(img[src*="/logos/"]) .elementor-inner-section > .elementor-container,
    .cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/logo"]) .elementor-inner-section > .elementor-container,
    .cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/image"]) .elementor-inner-section > .elementor-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 18px;
    }

    .cached-page--customers > .elementor > .elementor-section:has(img[src*="/logos/"]) > .elementor-container:has(> .elementor-column:nth-child(2)),
    .cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/logo"]) > .elementor-container:has(> .elementor-column:nth-child(2)),
    .cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/image"]) > .elementor-container:has(> .elementor-column:nth-child(2)) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cached-page--customers > .elementor > .elementor-section:has(img[src*="/logos/"]) > .elementor-container:has(> .elementor-column:nth-child(2)) > .elementor-column:first-child,
    .cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/logo"]) > .elementor-container:has(> .elementor-column:nth-child(2)) > .elementor-column:first-child,
    .cached-page--customers > .elementor > .elementor-section:has(img[src*="/home/image"]) > .elementor-container:has(> .elementor-column:nth-child(2)) > .elementor-column:first-child {
        grid-column: 1 / -1;
    }

    .cached-page--case .pr__section > .elementor-container:not(:has(> .elementor-column:nth-child(2))) > .elementor-column {
        padding: 30px 22px !important;
    }

    .cached-page #pr_blog {
        padding: 72px 0 !important;
    }

    .cached-page #pr_blog .pr-post-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        margin-top: 58px;
    }

    .section {
        padding: 72px 0;
    }

    .image-stack {
        grid-template-columns: 1fr;
    }

    .image-stack img:last-child {
        margin-bottom: 0;
    }

    .case-card p {
        min-height: 0;
    }

    .contact-panel {
        padding: 30px 22px;
    }
}
