/* ================================================================
   TMH Projekte — Komponenten (an helles Brand-Theme angeglichen)
   ================================================================ */

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 14px;
}
.gallery-hero {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--c-line);
    cursor: pointer;
    background: var(--c-bg-mid);
    aspect-ratio: 4/3;
}
.gallery-hero { aspect-ratio: 16/11; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
    display: block;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(221, 56, 50, 0.06) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--t-base);
}
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-hero { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ===== SPECS-TABLE ===== */
.specs-table {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    overflow: hidden;
}
.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    border-bottom: 1px solid var(--c-line);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) { background: var(--c-bg-soft); }
.spec-label {
    font-family: 'Rubik', sans-serif;
    font-size: 0.92rem;
    color: var(--c-text-mid);
    font-weight: 500;
}
.spec-value {
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    color: var(--c-ink);
    font-weight: 600;
    text-align: right;
}

/* ===== NORMS GROUP TITLE ===== */
.norms-group-title {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text-mid);
    text-align: center;
    margin: 32px 0 12px;
}
.norms-group-title:first-of-type { margin-top: 16px; }
.norm-badge.norm-badge-strong {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}
.norm-badge.norm-badge-strong:hover {
    background: var(--c-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== NORMS GRID ===== */
.norms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
}
.norm-badge {
    padding: 10px 22px;
    background: var(--c-primary-soft);
    border: 1px solid var(--c-primary-line);
    border-radius: 3px;
    font-family: 'Rubik', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-primary-dark);
    letter-spacing: 0.02em;
    transition: all var(--t-base);
}
.norm-badge:hover {
    background: var(--c-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== PROJECTS GRID ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.projects-grid .project-card:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.project-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--t-base);
    position: relative;
    display: flex;
    flex-direction: column;
}
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--c-primary);
    transition: width var(--t-base);
    z-index: 2;
}
.project-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-primary-line);
    box-shadow: 0 18px 40px rgba(7, 19, 35, 0.12);
}
.project-card:hover::before { width: 100%; }

.project-featured { border-color: var(--c-primary-line); }

.project-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--c-bg-mid);
}
.projects-grid .project-card:first-child .project-img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 320px;
}
.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.project-card:hover .project-img img { transform: scale(1.05); }

.project-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--c-primary);
    color: #fff;
    padding: 6px 14px;
    font-family: 'Rubik', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    z-index: 1;
}

.project-body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--c-ink);
}

.project-body p {
    font-size: 0.92rem;
    color: var(--c-text-mid);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-primary);
    font-family: 'Rubik', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: gap var(--t-base);
}
.project-card:hover .card-link { gap: 14px; }

.projects-grid .project-card:first-child .project-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(7, 19, 35, 0.94));
    padding: 60px 28px 28px;
    color: #fff;
}
.projects-grid .project-card:first-child .project-body h3 {
    font-size: 1.6rem;
    color: #fff;
}
.projects-grid .project-card:first-child .project-body p {
    color: rgba(255, 255, 255, 0.85);
}
.projects-grid .project-card:first-child .card-link {
    color: #fff;
}

@media (max-width: 968px) {
    .projects-grid { grid-template-columns: 1fr 1fr; }
    .projects-grid .project-card:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .projects-grid .project-card:first-child .project-img {
        aspect-ratio: 16/9;
        min-height: auto;
    }
}
@media (max-width: 640px) {
    .projects-grid { grid-template-columns: 1fr; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(7, 19, 35, 0.96);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 2.6rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    z-index: 10;
    background: none;
    border: none;
    transition: color var(--t-fast);
    line-height: 1;
}
.lightbox-close:hover { color: var(--c-primary); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    background: none;
    border: none;
    padding: 20px;
    transition: color var(--t-fast);
    z-index: 10;
}
.lightbox-nav:hover { color: var(--c-primary); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Rubik', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* ===== PROJECT MODAL ===== */
.project-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(7, 19, 35, 0.92);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow-y: auto;
}
.project-modal.open { display: flex; }
.project-modal-inner {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 6px;
    padding: 36px 40px;
    max-width: 920px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.project-modal-inner .lightbox-close {
    position: absolute;
    top: 16px;
    right: 22px;
    color: var(--c-text-dim);
    font-size: 2.2rem;
}
.project-modal-inner .lightbox-close:hover { color: var(--c-primary); }
.project-modal-inner h3 {
    font-size: 1.7rem;
    margin-bottom: 8px;
    color: var(--c-ink);
    padding-right: 40px;
}
.project-modal-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}
.project-modal-gallery img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--c-line);
    cursor: pointer;
    transition: transform var(--t-base);
}
.project-modal-gallery img:hover { transform: scale(1.02); }
.project-modal-gallery img:first-child { grid-column: 1 / -1; }

@media (max-width: 640px) {
    .project-modal-inner { padding: 24px; }
    .project-modal-gallery { grid-template-columns: 1fr; }
}

/* ===== LANG-SWITCHER ===== */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: rgba(7, 19, 35, 0.04);
    border: 1px solid var(--c-line);
    border-radius: 3px;
    padding: 3px;
}

.lang-switcher button {
    padding: 6px 10px;
    font-family: 'Rubik', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--c-text-mid);
    border-radius: 2px;
    transition: all var(--t-fast);
    text-transform: uppercase;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.lang-switcher button:hover {
    color: var(--c-primary);
}

.lang-switcher button.active {
    background: var(--c-primary);
    color: #fff;
}

@media (max-width: 1024px) {
    .lang-switcher { padding: 2px; }
    .lang-switcher button { padding: 5px 7px; font-size: 0.65rem; }
}

@media (max-width: 640px) {
    .lang-switcher button { padding: 4px 5px; font-size: 0.58rem; letter-spacing: 0.05em; }
}

/* ===== SECTION-DARK overlay variant (für CTA mit BG-Bild) ===== */
.cta-section { color: #fff; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255, 255, 255, 0.88); }
.cta-section .eyebrow { color: #fff; }
.cta-section .eyebrow::before { background: var(--c-primary); }

/* ===== TECH-DATEN Sektion (auf Hellgrau, aber Dark-CTA-Header möglich) ===== */
section[id="daten"] {
    background: var(--c-bg-mid);
}

/* ===== Section Helpers ===== */
.section-narrow { padding: 70px 0; }

/* ===== HERO VIDEO ===== */
.hero-video {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    background: var(--c-ink);
    color: #fff;
}
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-video .hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(7, 19, 35, 0.78) 0%, rgba(7, 19, 35, 0.45) 50%, rgba(7, 19, 35, 0.85) 100%),
        linear-gradient(180deg, transparent 50%, rgba(7, 19, 35, 0.35) 100%);
    z-index: 1;
}
.hero-video .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}
.hero-video .hero-title { color: #fff; line-height: 1; }
.hero-video .hero-sub { color: rgba(255, 255, 255, 0.88); }

@media (max-width: 768px) {
  .hero-video .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem); line-height: 1.05; }
  .hero-video .hero-sub { font-size: 0.98rem; line-height: 1.55; }
  .hero-video { padding: 140px 0 70px; min-height: 80vh; }
  .hero-video .eyebrow { font-size: 0.72rem; margin-bottom: 18px; }
}
@media (max-width: 480px) {
  .hero-video .hero-title { font-size: clamp(1.6rem, 8vw, 2.3rem); }
  .hero-video .hero-sub { font-size: 0.92rem; }
}
.hero-video .eyebrow { color: #fff; }
.hero-video .eyebrow::before { background: var(--c-primary); }

/* ===== USP-STRIP (No rusting! Galvanized! ...) ===== */
.usp-strip {
    background: var(--c-ink);
    padding: 50px 0;
    color: #fff;
    border-top: 4px solid var(--c-primary);
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    text-align: center;
}
.usp-item {
    padding: 16px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.usp-item:last-child { border-right: none; }
.usp-num {
    font-family: 'Rubik', sans-serif;
    font-size: 0.7rem;
    color: var(--c-primary-bright);
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 6px;
}
@media (max-width: 768px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.1); }
    .usp-item { background: var(--c-ink); border-right: none; padding: 24px 12px; }
}
@media (max-width: 380px) {
    .usp-grid { grid-template-columns: 1fr; }
}

/* ===== USE-CASES ===== */
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===== IM EINSATZ (split: Außen | Innen) ===== */
.einsatz-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 3vw, 48px);
    margin-top: 48px;
    align-items: start;
}
@media (max-width: 768px) {
    .einsatz-split { grid-template-columns: 1fr; gap: 60px; }
}
.einsatz-block .einsatz-label {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-primary);
    padding: 6px 14px;
    background: var(--c-primary-soft);
    border-radius: 2px;
    margin-bottom: 16px;
}
.einsatz-block h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    margin-bottom: 14px;
    color: var(--c-ink);
}
.einsatz-block > p {
    color: var(--c-text-mid);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.7;
}
.einsatz-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.einsatz-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 8px 22px rgba(7, 19, 35, 0.08);
    transition: transform var(--t-base);
}
.einsatz-grid img:hover { transform: translateY(-3px); }
.einsatz-grid .span-2 {
    grid-column: span 2;
    aspect-ratio: 4 / 3;
}

/* ===== WERKSTATT (Made in Germany) ===== */
.werkstatt-section {
    background: var(--c-bg-mid);
    padding: var(--section-pad) 0;
}
.werkstatt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}
@media (max-width: 968px) {
    .werkstatt-grid { grid-template-columns: repeat(2, 1fr); }
}
.werkstatt-grid img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    filter: grayscale(0.15);
    transition: filter var(--t-base), transform var(--t-base);
}
.werkstatt-grid img:hover { filter: grayscale(0); transform: translateY(-3px); }

/* ===== CE-BEWEIS ===== */
.ce-proof {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
    background: #fff;
    border: 1px solid var(--c-line);
    border-left: 4px solid var(--c-primary);
    padding: clamp(28px, 4vw, 48px);
    margin-top: 40px;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .ce-proof { grid-template-columns: 1fr; }
}
.ce-proof img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: var(--c-bg-mid);
    border-radius: 4px;
    box-shadow: 0 12px 28px rgba(7, 19, 35, 0.12);
}
.ce-proof h3 {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    margin-bottom: 14px;
}
.ce-proof .ce-specs {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}
.ce-proof .ce-specs li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--c-line);
    font-family: 'Rubik', sans-serif;
    font-size: 0.92rem;
}
.ce-proof .ce-specs li:last-child { border-bottom: none; }
.ce-proof .ce-specs strong {
    color: var(--c-ink);
    font-weight: 600;
}
.usecase-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 6px;
    padding: 36px 28px 32px;
    transition: all var(--t-base);
    position: relative;
}
.usecase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--c-primary);
    transition: width var(--t-base);
}
.usecase-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-primary-line);
    box-shadow: 0 16px 36px rgba(7, 19, 35, 0.08);
}
.usecase-card:hover::before { width: 100%; }
.usecase-icon {
    width: 64px;
    height: 64px;
    background: var(--c-primary-soft);
    color: var(--c-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.usecase-photo {
    width: calc(100% + 56px);
    margin: -36px -28px 22px;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}
.usecase-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-base);
}
.usecase-card:hover .usecase-photo img {
    transform: scale(1.04);
}
.usecase-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--c-ink);
}
.usecase-card p {
    font-size: 0.95rem;
    color: var(--c-text-mid);
    line-height: 1.65;
    margin: 0;
}
.usecase-compare {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}
.usecase-row {
    font-size: 0.9rem;
    color: var(--c-text-mid);
    line-height: 1.55;
    margin: 0;
}
.usecase-label {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 8px;
    vertical-align: middle;
}
.usecase-label-bad {
    background: rgba(7, 19, 35, 0.06);
    color: var(--c-text-mid);
}
.usecase-label-good {
    background: var(--c-primary-soft);
    color: var(--c-primary);
}
a.usecase-card {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}
.usecase-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-primary);
    margin-top: 18px;
    transition: gap var(--t-base);
}
.usecase-link svg {
    transition: transform var(--t-base);
}
a.usecase-card:hover .usecase-link {
    gap: 10px;
}
a.usecase-card:hover .usecase-link svg {
    transform: translateX(3px);
}

/* ===== ENGINEERING-PRINZIP (Gewicht als Feature) ===== */
.prinzip-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}
.prinzip-box {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-left: 3px solid var(--c-primary);
    border-radius: 4px;
    padding: 18px 20px;
}
.prinzip-box strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    color: var(--c-primary);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.prinzip-box span {
    font-size: 0.88rem;
    color: var(--c-text-mid);
    line-height: 1.5;
}
@media (max-width: 560px) {
    .prinzip-pair { grid-template-columns: 1fr; }
}

/* ===== TRUST-STRIP (CE + Normen) ===== */
.trust-strip {
    background: var(--c-bg-soft);
    padding: 56px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}
.trust-photo {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--c-line);
    background: #fff;
    aspect-ratio: 1/1.15;
}
.trust-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.norm-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    padding: 0;
    list-style: none;
}
.norm-pills li {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 14px;
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: 3px;
    color: var(--c-ink);
}
.norm-pills li strong {
    color: var(--c-primary);
    font-weight: 600;
    margin-right: 6px;
}
.norm-pills-label {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-text-mid);
    margin: 18px 0 8px;
}
.norm-pills li.norm-pill-strong {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}
.norm-pills li.norm-pill-strong strong {
    color: #fff;
}
@media (max-width: 768px) {
    .trust-grid { grid-template-columns: 1fr; gap: 28px; }
    .trust-photo { max-width: 320px; }
}

/* ===== CONFIG-LIST (Individuelle Konfiguration) ===== */
.config-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.config-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
}
.config-num {
    width: 56px;
    height: 56px;
    background: var(--c-primary);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.config-body h4 {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.05rem;
    color: var(--c-ink);
    margin: 4px 0 6px;
}
.config-body p {
    font-size: 0.95rem;
    color: var(--c-text-mid);
    line-height: 1.6;
    margin: 0;
}

/* ===== EINSATZ-DARK Section (Mehrwert-Statement) ===== */
.einsatz-dark {
    background: var(--c-ink);
    color: #fff;
    padding: var(--section-pad) 0;
}
.einsatz-dark .section-head h2 {
    color: #fff;
}
.einsatz-dark .section-head .lead {
    color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 1180px) {
    .usecase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .usecase-grid { grid-template-columns: 1fr; }
}

/* ===== VIDEO-SHOWCASE ===== */
.video-showcase {
    background: #fff;
    padding: var(--section-pad) 0;
}
.video-frame {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--c-line);
    box-shadow: 0 24px 60px rgba(7, 19, 35, 0.12);
    aspect-ratio: 16/9;
    background: var(--c-bg-mid);
}
.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-frame-sm {
    max-width: 100%;
    box-shadow: 0 16px 40px rgba(7, 19, 35, 0.08);
}
.video-showcase-split { background: #fff; }

/* ===== QUICK-SPECS (inline 3 cards) ===== */
.quick-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.quick-spec {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: 4px;
    padding: 22px 16px;
    text-align: center;
}
.quick-spec-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.quick-spec-lbl {
    font-size: 0.78rem;
    color: var(--c-text-mid);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ===== MINI-PROJECTS (compact horizontal grid) ===== */
.mini-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.mini-project {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--t-base);
}
.mini-project:hover {
    transform: translateY(-3px);
    border-color: var(--c-primary-line);
    box-shadow: 0 12px 30px rgba(7, 19, 35, 0.08);
}
.mini-project-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--c-bg-mid);
}
.mini-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.mini-project:hover .mini-project-img img { transform: scale(1.05); }
.mini-project-body {
    padding: 14px 16px 18px;
}
.mini-project-body h4 {
    font-size: 0.92rem;
    color: var(--c-ink);
    margin: 0;
    line-height: 1.3;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}
@media (max-width: 768px) {
    .mini-projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
    .mini-projects-grid { grid-template-columns: 1fr; }
}

/* ===== TEASER-GRID (Landing) ===== */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.teaser-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 6px;
    overflow: hidden;
    transition: all var(--t-base);
    position: relative;
    text-decoration: none;
    color: inherit;
}
.teaser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--c-primary);
    transition: width var(--t-base);
    z-index: 2;
}
.teaser-card:hover {
    transform: translateY(-6px);
    border-color: var(--c-primary-line);
    box-shadow: 0 20px 50px rgba(7, 19, 35, 0.12);
}
.teaser-card:hover::before { width: 100%; }

.teaser-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--c-bg-mid);
}
.teaser-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.teaser-card:hover .teaser-img img { transform: scale(1.05); }

.teaser-body {
    padding: 28px 28px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.teaser-body h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--c-ink);
}
.teaser-body p {
    color: var(--c-text-mid);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

@media (max-width: 768px) {
    .teaser-grid { grid-template-columns: 1fr; }
    .teaser-body { padding: 22px; }
    .teaser-body h3 { font-size: 1.3rem; }
}

/* ===== CHECK-LIST ===== */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
    position: relative;
    padding: 12px 0 12px 30px;
    color: var(--c-text-mid);
    border-bottom: 1px solid var(--c-line);
    font-size: 0.96rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--c-primary);
    font-weight: 700;
    font-size: 1.05rem;
}

/* ===== KONTAKT ===== */
.contact-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--c-line);
}
.contact-row:last-child { border-bottom: none; }
.contact-row-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: var(--c-primary-soft);
    color: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-row-label {
    font-family: 'Rubik', sans-serif;
    font-size: 0.7rem;
    color: var(--c-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-row-value {
    color: var(--c-ink);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.4;
    text-decoration: none;
    transition: color var(--t-fast);
    display: block;
}
a.contact-row-value:hover { color: var(--c-primary); }

.contact-cta-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 6px;
    padding: 36px 32px;
    box-shadow: 0 10px 30px rgba(7, 19, 35, 0.05);
}
.contact-cta-card h3 {
    font-size: 1.5rem;
    color: var(--c-ink);
}

@media (max-width: 768px) {
    .contact-cta-card { padding: 28px 24px; }
}

/* ===== BLOG ===== */
.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 12px;
}
.blog-filter-btn {
    background: #fff;
    border: 1.5px solid var(--c-line);
    color: var(--c-text-mid);
    padding: 9px 20px;
    border-radius: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--t-base);
}
.blog-filter-btn:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}
.blog-filter-btn.active {
    background: var(--c-primary-soft);
    border-color: var(--c-primary);
    color: var(--c-primary);
}
.blog-filter-count {
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-size: 0.82rem;
    color: var(--c-text-mid);
    margin-bottom: 32px;
    letter-spacing: 0.04em;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 968px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 6px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--t-base);
    color: inherit;
    min-height: 280px;
}
.blog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 3px;
    width: 0;
    background: var(--c-primary);
    transition: width var(--t-base);
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-primary-line);
    box-shadow: 0 18px 40px rgba(7, 19, 35, 0.10);
}
.blog-card:hover::before { width: 100%; }

.blog-card-category {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-primary);
    background: var(--c-primary-soft);
    padding: 5px 11px;
    border-radius: 2px;
    margin-bottom: 16px;
    align-self: flex-start;
}
.blog-card-title {
    font-size: 1.2rem;
    line-height: 1.25;
    color: var(--c-ink);
    margin-bottom: 12px;
}
.blog-card-desc {
    color: var(--c-text-mid);
    font-size: 0.93rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 18px;
}
.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Rubik', sans-serif;
    font-size: 0.78rem;
    color: var(--c-text-dim);
    border-top: 1px solid var(--c-line);
    padding-top: 14px;
    letter-spacing: 0.02em;
}
/* ===== ARTICLE ===== */
.article-hero {
    background: linear-gradient(180deg, var(--c-bg-mid) 0%, #fff 100%);
    padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 5vw, 60px);
    border-bottom: 1px solid var(--c-line);
}
.article-hero .container { max-width: 880px; }
.article-category {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-primary);
    background: var(--c-primary-soft);
    padding: 7px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
}
.article-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--c-ink);
    margin-bottom: 20px;
    letter-spacing: -0.005em;
}
.article-lead {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.6;
    color: var(--c-text-mid);
    margin-bottom: 26px;
    max-width: 720px;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rubik', sans-serif;
    font-size: 0.85rem;
    color: var(--c-text-dim);
    letter-spacing: 0.02em;
}
.article-meta .dot { opacity: 0.5; }

.article-body {
    padding: clamp(40px, 6vw, 80px) 0;
    background: #fff;
}
.article-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.article-content {
    font-family: 'Rubik', sans-serif;
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--c-text);
}
.article-content h2 {
    font-family: 'Barlow Condensed', 'Rubik', sans-serif;
    font-size: clamp(1.55rem, 2.6vw, 2.05rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--c-ink);
    text-transform: uppercase;
    letter-spacing: -0.005em;
    margin: 48px 0 18px;
}
.article-content h3 {
    font-family: 'Barlow Condensed', 'Rubik', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.45rem);
    font-weight: 600;
    color: var(--c-ink);
    text-transform: uppercase;
    margin: 36px 0 14px;
}
.article-content p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--c-text);
    font-family: 'Rubik', sans-serif;
}
.article-content ul, .article-content ol {
    margin: 0 0 22px 24px;
    padding: 0;
    list-style: disc;
}
.article-content ol { list-style: decimal; }
.article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.article-content strong { color: var(--c-ink); font-weight: 600; }
.article-content a {
    color: var(--c-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.article-content blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 8px 22px;
    margin: 22px 0;
    color: var(--c-text-mid);
    font-style: italic;
}
.article-content code {
    background: var(--c-bg-mid);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.92em;
}
.article-content table {
    width: calc(100% + 60px);
    margin: 32px -30px;
    border-collapse: collapse;
    font-family: 'Rubik', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    overflow: hidden;
}
@media (max-width: 880px) {
    .article-content table {
        width: 100%;
        margin: 28px 0;
        display: block;
        overflow-x: auto;
        font-size: 0.85rem;
    }
}
.article-content table th,
.article-content table td {
    padding: 13px 16px;
    text-align: left;
    border-bottom: 1px solid var(--c-line);
    vertical-align: top;
}
.article-content table thead th {
    background: var(--c-bg-mid);
    color: var(--c-ink);
    font-family: 'Barlow Condensed', 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--c-ink);
    white-space: nowrap;
}
.article-content table tbody tr:nth-child(even) {
    background: var(--c-bg-soft);
}
.article-content table tbody tr:last-child td {
    border-bottom: none;
}
.article-content table tbody td:first-child {
    font-weight: 600;
    color: var(--c-ink);
    font-family: 'Barlow Condensed', 'Rubik', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.article-cta-box {
    margin-top: 56px;
    padding: 36px 32px;
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-left: 4px solid var(--c-primary);
    border-radius: 4px;
}
.article-cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--c-ink);
}
.article-cta-box p {
    color: var(--c-text-mid);
    font-size: 0.98rem;
}

/* ===== KONFIGURATOR ===== */
.konfig-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
    margin-top: 40px;
}
@media (max-width: 868px) {
    .konfig-wrapper { grid-template-columns: 1fr; }
}
.konfig-controls {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.konfig-group {}
.konfig-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-ink);
    margin-bottom: 10px;
}
.konfig-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.konfig-btn {
    padding: 10px 18px;
    font-family: 'Rubik', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    background: #fff;
    color: var(--c-text-mid);
    cursor: pointer;
    transition: all var(--t-fast);
}
.konfig-btn:hover {
    border-color: var(--c-primary-line);
    color: var(--c-primary);
}
.konfig-btn.active {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}
.konfig-preview {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 6px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.konfig-summary {
    margin-top: 36px;
    padding: 28px 32px;
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-left: 4px solid var(--c-primary);
    border-radius: 4px;
}
.konfig-summary h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--c-ink);
}
.konfig-summary p {
    color: var(--c-text-mid);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid var(--c-line);
}
.faq-item:first-child {
    border-top: 1px solid var(--c-line);
}
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-ink);
    text-align: left;
    line-height: 1.4;
    transition: color var(--t-fast);
}
.faq-trigger:hover { color: var(--c-primary); }
.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--t-base);
    color: var(--c-text-mid);
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--c-primary);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0 0 0;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 0 20px 0;
}
.faq-answer p {
    font-size: 0.95rem;
    color: var(--c-text-mid);
    line-height: 1.7;
    margin: 0;
}

/* ===== VERGLEICHS-MATRIX ===== */
.matrix-wrap {
    overflow-x: auto;
    margin-top: 40px;
}
.matrix-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Rubik', sans-serif;
    font-size: 0.9rem;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    overflow: hidden;
    min-width: 640px;
}
.matrix-table th,
.matrix-table td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid var(--c-line);
    vertical-align: middle;
}
.matrix-table thead th {
    background: var(--c-bg-mid);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-ink);
    border-bottom: 2px solid var(--c-ink);
}
.matrix-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--c-ink);
    white-space: nowrap;
}
.matrix-table tbody tr:nth-child(even) {
    background: var(--c-bg-soft);
}
.matrix-table tbody tr:last-child td {
    border-bottom: none;
}
.matrix-highlight {
    background: rgba(221, 56, 50, 0.06) !important;
    font-weight: 600;
    color: var(--c-primary) !important;
}
.matrix-table thead th.matrix-highlight {
    background: var(--c-primary) !important;
    color: #fff !important;
}

/* ===== ROI RECHNER ===== */
.roi-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
}
.roi-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 36px;
    margin-bottom: 36px;
}
@media (max-width: 640px) {
    .roi-inputs { grid-template-columns: 1fr; }
}
.roi-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.roi-field label {
    font-family: 'Rubik', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--c-ink);
}
.roi-field input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--c-line);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.roi-field input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--c-primary);
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
}
.roi-field input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--c-primary);
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
}
.roi-field input[type="number"] {
    padding: 10px 14px;
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    background: #fff;
    color: var(--c-ink);
    width: 100%;
}
.roi-field output {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-primary);
}
.roi-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}
@media (max-width: 640px) {
    .roi-results { grid-template-columns: 1fr; }
}
.roi-result-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 6px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.roi-result-highlight {
    border-color: var(--c-primary);
    background: rgba(221, 56, 50, 0.04);
}
.roi-result-label {
    font-family: 'Rubik', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-text-mid);
}
.roi-result-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--c-ink);
}
.roi-result-highlight .roi-result-value {
    color: var(--c-primary);
}
.roi-disclaimer {
    font-size: 0.82rem;
    color: var(--c-text-dim);
    text-align: center;
    font-style: italic;
    margin: 0;
}
