/* ====================================
    Startseite
===================================== */

.hero {
    position: relative;
    isolation: isolate;
    min-height: 620px;
    padding: 100px 5%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(4,7,13,0.86),
            rgba(4,7,13,0.42),
            rgba(4,7,13,0.70)
        ),
        url('../img/background.png');

    background-size: 98%;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: 1;
    pointer-events: none;

    background:
        radial-gradient(circle at 18% 30%, rgba(155,69,255,0.22), transparent 28%),
        radial-gradient(circle at 75% 22%, rgba(168,92,255,0.12), transparent 24%),
        radial-gradient(circle at 70% 75%, rgba(80,120,255,0.10), transparent 30%);

    filter: blur(18px);
    /* animation: heroGlowMove 12s ease-in-out infinite alternate; */
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    z-index: 5;
    background: linear-gradient(
        to bottom,
        rgba(7, 11, 20, 0),
        #07101d 85%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 620px;
    margin-left: 4%;
}

.hero-kicker,
.section-kicker {
    color: #9b45ff;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 12px;
}

.hero h2 {
    font-size: clamp(2.8rem, 4.8vw, 4.5rem);
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 24px;
}

.hero-text {
    color: #d4d7df;
    font-size: 19px;
    line-height: 1.55;
    max-width: 620px;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    padding: 16px 24px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.3px;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #8b37ff, #5b1de0);
    color: white;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn.primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(139,55,255,0.35);
}

.btn.secondary {
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    background: rgba(255,255,255,0.04);
}

.btn.secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(168,92,255,0.75);
    box-shadow: 0 10px 25px rgba(0,0,0,0.28);
}

.status-card {
    position: relative;
    margin-top: 40px;
    width: 420px;
    height: 138px;
    padding: 26px;
    background: rgba(10, 17, 31, 0.86);
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.status-title {
    font-weight: 900;
    font-size: 14px;
}

.status-title span {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #ffc026;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 18px #ffc026;
}

.status-card strong {
    display: block;
    color: #9b45ff;
    font-size: 25px;
    margin: 14px 0 8px 16px;
}

.status-card p {
    color: #b9bdc7;
    font-size: 14px;
    margin-left: 16px;
}

.mini-chart {
    position: absolute;
    right: 32px;
    bottom: 28px;
    width: 130px;
    height: 55px;
    border-bottom: 2px solid rgba(155,69,255,0.35);
    background: linear-gradient(135deg, transparent 45%, rgba(155,69,255,0.35));
    clip-path: polygon(0 80%, 14% 62%, 28% 70%, 42% 35%, 55% 58%, 68% 20%, 82% 32%, 100% 0, 100% 100%, 0 100%);
}

.services {
    position: relative;
    padding: 70px 10% 80px;
    text-align: center;
    background: #07101d;
}

.services::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: 180px;
    height: 2px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(139,55,255,0.7),
        transparent
    );
}

.services h2 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 900;
}

.service-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: left;
}

.service-card {
    min-height: 190px;
    padding: 28px;
    background: rgba(10, 17, 31, 0.86);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168,92,255,0.55);
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
    background: rgba(14, 22, 40, 0.95);
}

.icon {
    font-size: 42px;
    color: #8b37ff;
    margin-bottom: 18px;

    filter: drop-shadow(0 0 12px rgba(139,55,255,0.35));
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 900;
}

.service-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 10px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;

    color: #c88cff;
    background: rgba(139,55,255,0.12);
    border: 1px solid rgba(139,55,255,0.25);
}

.service-card p {
    color: #c6cad4;
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-card a {
    color: #a85cff;
    border: 1px solid #6930bd;
    padding: 10px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    transition: 0.25s ease;
}

.service-card a:hover {
    color: #ffffff;
    background: rgba(139,55,255,0.16);
}

.contact-strip .brand-cat {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-strip .brand-cat img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.contact-strip .brand-cat {
    filter: drop-shadow(0 0 16px rgba(139,55,255,0.22));
}

.contact-strip {
    margin: 20px 10% 80px;
    padding: 34px 42px;
    display: flex;
    align-items: center;
    gap: 30px;
    background:
        linear-gradient(135deg, rgba(139,55,255,0.12), rgba(10,17,31,0.88)),
        rgba(10, 17, 31, 0.92);
    border: 1px solid rgba(168,92,255,0.18);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.24);
}

.contact-cat {
    font-size: 46px;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 900;
}

.contact-text p {
    color: #d4d7df;
    font-size: 16px;
    line-height: 1.5;
}

.site-footer a:hover {
    color: #a85cff;
}.site-footer {
    padding: 26px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #050913;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #9ca3b8;
}

.site-footer a {
    color: #9ca3b8;
    text-decoration: none;
    margin-left: 22px;
}

.site-footer a:hover {
    color: #a85cff;
}

.hero-cat {
    position: absolute;
    right: 2%;
    bottom: -100px;
    z-index: 4;
    pointer-events: none;
}

.hero-cat img {
    height: 620px;
    width: auto;
    display: block;

    filter:
        brightness(0.82)
        contrast(0.92)
        saturate(0.92)

    opacity 0.96;

    /* animation: heroCatFloat 7s ease-in-out infinite; */
}

@keyframes heroGlowMove {
    0% {
        transform: translate3d(-12px, -8px, 0) scale(1);
        opacity: 0.75;
    }

    100% {
        transform: translate3d(18px, 10px, 0) scale(1.06);
        opacity: 1;
    }
}

@keyframes heroCatFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}