/* MATIS LABS Support — two clear service paths */
.support-page {
    background: #f5f4f0;
}

.support-page .grid-bg,
.support-page .noise-overlay {
    opacity: 0.2;
}

.support-hero.hero {
    min-height: 0;
    padding: clamp(7.5rem, 10vw, 8.75rem) 0 clamp(4rem, 7vw, 6rem) !important;
    background:
        radial-gradient(circle at 12% 10%, rgba(196, 162, 97, 0.14), transparent 24%),
        radial-gradient(circle at 88% 34%, rgba(68, 84, 117, 0.22), transparent 30%),
        linear-gradient(145deg, #070a12 0%, #0c1120 56%, #090c15 100%) !important;
    color: #fff;
    overflow: hidden;
}

.support-hero-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    column-gap: clamp(2rem, 6vw, 6rem);
    row-gap: 1.1rem;
    align-items: end;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.support-kicker {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    width: fit-content;
    color: #d6b875;
    font: 700 0.68rem/1.2 var(--font-mono);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.support-kicker > span {
    display: block;
    width: 2.25rem;
    height: 1px;
    background: currentColor;
}

.support-hero-heading h1 {
    margin: 0;
    max-width: 780px !important;
    color: #fff;
    font-size: clamp(2.8rem, 5vw, 4.85rem) !important;
    line-height: 0.96;
    letter-spacing: -0.065em;
    text-wrap: balance;
    white-space: nowrap;
}

.support-hero-heading > p {
    margin: 0 0 0.5rem;
    max-width: 31rem;
    color: rgba(239, 242, 250, 0.72);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.7;
}

.support-path-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2.3vw, 1.75rem);
}

.support-path-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease, box-shadow 300ms ease;
}

.support-path-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 1px solid transparent;
    border-radius: inherit;
    pointer-events: none;
    transition: border-color 300ms ease;
}

.support-path-card:hover,
.support-path-card:focus-within {
    transform: translateY(-8px);
    border-color: rgba(214, 184, 117, 0.55);
    box-shadow: 0 36px 86px rgba(0, 0, 0, 0.34);
}

.support-path-card:hover::before,
.support-path-card:focus-within::before {
    border-color: rgba(214, 184, 117, 0.35);
}

.support-path-card--portal {
    display: block;
    background: #fbfaf7;
    color: #0b1020;
}

.support-path-card--remote {
    background: #111725;
    color: #fff;
}

.support-path-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.support-path-visual {
    position: relative;
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    background: #090c14;
}

.support-path-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 54%, rgba(5, 8, 15, 0.54) 100%);
    pointer-events: none;
}

.support-path-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

.support-path-card--portal .support-path-visual img {
    object-position: center top;
}

.support-path-card:hover .support-path-visual img,
.support-path-card:focus-within .support-path-visual img {
    transform: scale(1.035);
}

.support-path-visual figcaption {
    position: absolute;
    left: 1.25rem;
    bottom: 1rem;
    z-index: 2;
    padding: 0.48rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(7, 10, 18, 0.68);
    color: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    font: 700 0.58rem/1 var(--font-mono);
    letter-spacing: 0.1em;
}

.support-path-copy {
    display: flex;
    flex-direction: column;
    min-height: 15rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.support-path-number {
    margin-bottom: 1.15rem;
    color: #9b762f;
    font: 700 0.64rem/1.2 var(--font-mono);
    letter-spacing: 0.12em;
}

.support-path-card--remote .support-path-number {
    color: #d6b875;
}

.support-path-copy h2 {
    margin: 0 0 0.9rem;
    max-width: 27rem;
    color: inherit;
    font-size: clamp(1.7rem, 3vw, 2.65rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.support-path-copy > p {
    margin: 0 0 0.65rem;
    max-width: 32rem;
    color: #596174;
    line-height: 1.65;
}

.support-path-card--remote .support-path-copy > p {
    color: rgba(235, 239, 249, 0.68);
}

.support-path-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1.5rem 0 1.75rem;
}

.support-path-meta span {
    padding: 0.42rem 0.68rem;
    border: 1px solid rgba(12, 17, 32, 0.12);
    border-radius: 999px;
    color: #3d4558;
    font-size: 0.72rem;
    font-weight: 600;
}

.support-path-card--remote .support-path-meta span {
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.72);
}

.support-path-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    min-height: 3.4rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid #d6b875;
    border-radius: 12px;
    background: #d6b875;
    color: #0b1020;
    box-shadow: 0 9px 24px rgba(126, 91, 28, 0.2);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.support-path-action > span:last-child {
    color: #0b1020;
    font-size: 1.25rem;
    transition: transform 250ms ease;
}

.support-path-card--remote .support-path-action {
    border-color: #d6b875;
    color: #0b1020;
}

.support-path-card:hover .support-path-action,
.support-path-card:focus-within .support-path-action {
    border-color: #e6cf99;
    background: #e6cf99;
    box-shadow: 0 12px 30px rgba(126, 91, 28, 0.3);
    transform: translateY(-1px);
}

.support-path-card:hover .support-path-action > span:last-child,
.support-path-card:focus-within .support-path-action > span:last-child {
    transform: translate(3px, -3px);
}

.support-path-card.non-windows .support-path-number::after {
    content: ' · WINDOWS ERFORDERLICH';
    color: rgba(255, 255, 255, 0.5);
}

.support-service-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(1rem, 2.4vw, 1.75rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.support-service-strip > div {
    position: relative;
    padding: 1.15rem 1.35rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.support-service-strip > div:last-child {
    border-right: 0;
}

.support-service-strip strong,
.support-service-strip small {
    display: block;
}

.support-service-strip strong {
    margin-bottom: 0.2rem;
    color: #fff;
    font-size: 0.78rem;
}

.support-service-strip small {
    color: rgba(238, 241, 250, 0.55);
    font-size: 0.7rem;
}

.support-service-strip > div:first-child {
    padding-left: 2.75rem;
}

.support-status-dot {
    position: absolute;
    left: 1.35rem;
    top: 1.45rem;
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    background: #d6b875;
    box-shadow: 0 0 0 5px rgba(214, 184, 117, 0.12), 0 0 18px rgba(214, 184, 117, 0.5);
}

.support-faq {
    padding: clamp(5rem, 9vw, 8.5rem) 0;
    border-top: 1px solid rgba(10, 15, 28, 0.08);
    background:
        linear-gradient(90deg, rgba(196, 162, 97, 0.06) 1px, transparent 1px),
        #f5f4f0;
    background-size: min(8vw, 110px) 100%;
}

.support-faq-layout {
    display: grid;
    grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
}

.support-faq-intro {
    position: sticky;
    top: 7rem;
}

.support-kicker--dark {
    color: #9b762f;
}

.support-faq-intro h2 {
    margin: 1.5rem 0 1.25rem;
    max-width: 29rem;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.support-faq-intro p {
    max-width: 28rem;
    color: #5a6272;
    font-size: 1rem;
}

.support-mail-link {
    display: inline-flex;
    gap: 0.55rem;
    margin-top: 1.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #a7833f;
    color: #11182a;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
}

.support-faq .search-wrapper {
    max-width: none;
    margin: 0 0 1.1rem;
}

.support-faq .search-bar {
    position: relative;
}

.support-faq .search-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1.25rem;
    width: 0.7rem;
    height: 0.7rem;
    border: 1.5px solid #7b8290;
    border-radius: 50%;
    transform: translateY(-60%);
    pointer-events: none;
}

.support-faq .search-bar::after {
    content: '';
    position: absolute;
    top: calc(50% + 0.35rem);
    left: 1.82rem;
    width: 0.4rem;
    height: 1.5px;
    background: #7b8290;
    transform: rotate(45deg);
    transform-origin: left center;
    pointer-events: none;
}

.support-faq .search-bar input {
    min-height: 3.7rem;
    padding: 0.9rem 1.2rem 0.9rem 3.1rem;
    border: 1px solid rgba(12, 17, 32, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 32px rgba(11, 16, 32, 0.045);
}

.support-faq .search-bar input:focus {
    border-color: rgba(155, 118, 47, 0.55);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(196, 162, 97, 0.1), 0 12px 36px rgba(11, 16, 32, 0.06);
}

.support-faq .faq-list {
    max-width: none;
    gap: 0.7rem;
}

.support-faq .faq-item {
    border: 1px solid rgba(12, 17, 32, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 9px 28px rgba(11, 16, 32, 0.035);
}

.support-faq .faq-item:hover {
    border-color: rgba(155, 118, 47, 0.42);
    background: #fff;
}

.support-faq .faq-trigger {
    padding: 1.35rem 1.45rem;
    color: #11182a;
    font-size: 0.98rem;
}

.support-faq .faq-symbol {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(12, 17, 32, 0.12);
    border-radius: 50%;
    color: #9b762f;
}

.support-faq .faq-answer-inner,
.support-faq .faq-answer-inner p {
    color: #596174;
}

.support-faq .faq-answer-inner {
    padding: 0 1.45rem 1.45rem;
}

.support-faq .faq-answer-inner a,
.support-faq .faq-answer-inner code {
    color: #7f5d22;
}

@media (max-width: 980px) {
    .support-hero-heading,
    .support-faq-layout {
        grid-template-columns: 1fr;
    }

    .support-hero-heading {
        gap: 1.25rem;
    }

    .support-hero-heading h1 {
        white-space: normal;
    }

    .support-faq-intro {
        position: static;
    }

    .support-faq-intro h2 {
        max-width: 42rem;
    }
}

@media (max-width: 760px) {
    .support-hero.hero {
        padding-top: 7.25rem !important;
    }

    .support-path-grid,
    .support-service-strip {
        grid-template-columns: 1fr;
    }

    .support-path-card:hover,
    .support-path-card:focus-within {
        transform: translateY(-4px);
    }

    .support-path-copy {
        min-height: 0;
    }

    .support-service-strip > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .support-service-strip > div:last-child {
        border-bottom: 0;
    }

    .support-faq {
        background-size: 84px 100%;
    }
}

@media (max-width: 480px) {
    .support-hero-heading h1 {
        font-size: clamp(2.65rem, 13vw, 3.75rem) !important;
    }

    .support-path-card {
        border-radius: 18px;
    }

    .support-path-visual {
        aspect-ratio: 4 / 3;
    }

    .support-path-visual figcaption {
        left: 0.85rem;
        bottom: 0.75rem;
        font-size: 0.52rem;
    }

    .support-path-copy {
        padding: 1.35rem;
    }

    .support-faq .faq-trigger {
        gap: 1rem;
        padding: 1.15rem;
    }

    .support-faq .faq-answer-inner {
        padding: 0 1.15rem 1.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .support-path-card,
    .support-path-visual img,
    .support-path-action > span:last-child {
        transition: none !important;
    }
}
