﻿/* Platform Container */
#platform {
    opacity: 0;
    
    transform: translateY(15px);
    animation: platformEntrance 1.8s ease-out forwards;
    animation-delay: 0.2s;
    width: 100%;
}

@keyframes platformEntrance {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#platform img {
    opacity: 0;
    transform: scale(0.98);
    animation: imageFadeIn 2s ease-out forwards;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

    #platform img:nth-of-type(1) {
        animation-delay: 1s;
    }

    #platform img:nth-of-type(2) {
        animation-delay: 1.1s;
    }

    #platform img:nth-of-type(3) {
        animation-delay: 1.2s;
    }

    #platform img:nth-of-type(4) {
        animation-delay: 1.3s;
    }

@keyframes imageFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

#platform img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

@media (max-width: 576px) {
    #platform img {
        height: 28px;
    }
}

.social-connect-box {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(39, 179, 162, 0.1);
    max-width: 650px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .social-connect-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(39, 179, 162, 0.15);
    }

.social-header {
  margin-bottom: 2rem;
}

.social-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27b3a2;
    margin-bottom: 0.5rem;
}

.social-subtitle {
    font-size: 1rem;
    color: #536076;
    margin: 0;
}

.social-links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    background-color:rebeccapurple;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
   /* padding: 1rem;*/
    border-radius: 1rem;
    background: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-width: 90px;
}

    .social-link:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .social-link.linkedin:hover {
        background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
    }

    .social-link.youtube:hover {
        background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%);
    }

    .social-link.instagram:hover {
        background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    }

    .social-link.facebook:hover {
        background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    }

    .social-link img {
        height: 40px;
        width: 40px;
        object-fit: contain;
        transition: filter 0.3s ease;
    }

    .social-link:hover img {
        filter: brightness(0) invert(1);
    }

.social-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #536076;
    transition: color 0.3s ease;
}

.social-link:hover .social-label {
    color: #fff;
}

/* Zusätzliche Regel für social-link-compact (falls noch verwendet) */
.social-link-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
   /* padding: 0.75rem;*/
    border-radius: 0.5rem;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

    .social-link-compact img {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        max-width: 32px;
        max-height: 32px;
        object-fit: contain;
        display: block;
    }

.social-label-compact {
    font-size: 0.9rem;
    font-weight: 600;
    color: #536076;
    margin-left: 0.5rem;
}

@media (max-width: 576px) {
    .social-connect-box {
     /*   padding: 2rem 1.5rem;*/
    }

    .social-title {
        font-size: 1.25rem;
    }

    .social-links-container {
        gap: 1rem;
    }

    .social-link {
        min-width: 75px;
        padding: 0.75rem;
    }

        .social-link img {
            height: 32px;
            width: 32px;
        }
}

#platform {
    opacity: 0;
/*    padding: 25px 0;*/
    transform: translateY(15px);
    animation: platformEntrance 1.8s ease-out forwards;
    animation-delay: 0.2s;
    width: 100%;
}

.social-connect-box-wide {
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(39, 179, 162, 0.1);
    width: 95%;
    transition: box-shadow 0.3s ease;
}

    .social-connect-box-wide:hover {
        box-shadow: 0 6px 25px rgba(39, 179, 162, 0.15);
    }

.social-content-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-header-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon-inline {
    font-size: 2.5rem;
}

.social-text-inline {
    text-align: left;
}

.social-title-inline {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27b3a2;
    color: white;
    margin: 0 0 0.25rem 0;
}

.social-subtitle-inline {
    font-size: 0.9rem;
    color: #536076;
    color: whitesmoke;
    margin: 0;
}

.social-links-horizontal {
    display: flex;
    align-items: center;
    align-content: space-between;
    gap: 1rem;
}

/* Brand-konforme Social-Media-Links */
.social-link-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

    .social-link-brand:hover {
        transform: scale(1.1);
    }

    /* LinkedIn - Offizielle Farbe: #0A66C2 */
    .social-link-brand.linkedin:hover {
        background: rgba(10, 102, 194, 0.1);
    }

    /* YouTube - Offizielle Farbe: #FF0000 */
    .social-link-brand.youtube:hover {
        background: rgba(255, 0, 0, 0.1);
    }

    /* Instagram - Gradient-Farbe */
    .social-link-brand.instagram:hover {
        background: rgba(225, 48, 108, 0.1);
    }

    /* Facebook - Offizielle Farbe: #1877F2 */
    .social-link-brand.facebook:hover {
        background: rgba(24, 119, 242, 0.1);
    }

    /* Logo-Spezifikationen - NUR HÖHE definieren, Breite automatisch */
    .social-link-brand img {
        height: 32px;
        width: auto;
        min-height: 32px;
        max-height: 32px;
        object-fit: contain;
        transition: transform 0.3s ease;
        display: block;
    }

    .social-link-brand:hover img {
        transform: scale(1.1);
    }

@media (max-width: 992px) {
    .social-content-horizontal {
        flex-direction: column;
        gap: 1.5rem;
    }

    .social-header-inline {
        flex-direction: column;
        text-align: center;
    }

    .social-text-inline {
        text-align: center;
    }

    .social-links-horizontal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .social-connect-box-wide {
        padding: 1.25rem 1.5rem;
        width: 98%;
    }

    .social-icon-inline {
        font-size: 2rem;
    }

    .social-title-inline {
        font-size: 1.1rem;
    }

    .social-links-horizontal {
        gap: 0.5rem;
        flex-direction: column;
    }

    .social-link-brand {
        padding: 0.6rem;
    }

        .social-link-brand img {
            height: 28px;
            min-height: 28px;
            max-height: 28px;
        }
}

.social-link-brand {
    opacity: 0;
    transform: translateY(10px);
    animation: linkFadeIn 1s ease-out forwards;
}

    .social-link-brand:nth-child(1) {
        animation-delay: 0.8s;
    }

    .social-link-brand:nth-child(2) {
        animation-delay: 1s;
    }

    .social-link-brand:nth-child(3) {
        animation-delay: 1.2s;
    }

    .social-link-brand:nth-child(4) {
        animation-delay: 1.4s;
    }

@keyframes linkFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Media Links - Hover-Effekte */
#platform .social-link-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    border: 2px solid transparent;
}

#platform .social-link-brand:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* LinkedIn - Offizielle Farbe: #0A66C2 */
#platform .social-link-brand.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
}

/* YouTube - Offizielle Farbe: #FF0000 */
#platform .social-link-brand.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

/* Instagram - Gradient */
#platform .social-link-brand.instagram:hover {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-color: #fd1d1d;
}

/* Facebook - Offizielle Farbe: #1877F2 */
#platform .social-link-brand.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

/* Logo-Effekt beim Hover */
#platform .social-link-brand img {
    height: 32px;
    width: auto;
    min-height: 32px;
    max-height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    filter: brightness(1);
}

#platform .social-link-brand:hover img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}


:root {
    --app-bg: #050505;
    --app-bg-soft: #080808;
    --app-surface: #0d0d0d;
    --app-surface-hover: #121212;
    --app-border: #292929;
    --app-border-soft: #202020;
    --app-text: #f5f5f5;
    --app-muted: #b8b8b8;
    --app-green: #96BF13;
    --app-green-hover: #a8d518;
    --app-max: 1380px;
}

* {
    box-sizing: border-box;
}

.app-home {
    overflow: hidden;
    background: var(--app-bg);
    color: var(--app-text);
    font-family: Arial, Helvetica, sans-serif;
}

.app-wrap {
    width: min(calc(100% - 48px), var(--app-max));
    margin-inline: auto;
}

.app-home .app-section {
    padding: 88px 0;
    /* background: #242424; */
    background: var(--app-bg-soft);
}

.app-soft {
    background: var(--app-bg-soft);
    border-top: 1px solid var(--app-border-soft);
    border-bottom: 1px solid var(--app-border-soft);
}

.app-kicker {
    margin: 0 0 10px;
    color: var(--app-green);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.app-section h2,
.app-info-title h2 {
    margin: 0;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.app-section h2 {
    font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.app-section-head {
    max-width: 850px;
    margin-bottom: 42px;
}

    .app-section-head > p:last-child {
        max-width: 780px;
        margin: 18px 0 0;
        color: var(--app-muted);
        font-size: 1.1rem;
    }


/* HERO */

.app-hero {
    position: relative;
    padding: 82px 0;
    border-bottom: 1px solid var(--app-border-soft);
    background: radial-gradient(circle at 79% 42%, rgba(150, 191, 19, .13), transparent 25rem), linear-gradient(135deg, #050505 0%, #050505 62%, #090b04 100%);
}

.app-hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: clamp(44px, 7vw, 110px);
    align-items: center;
}

.app-hero-copy h1 {
    max-width: 820px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.7rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.05em;
}

.app-hero-subline {
    margin: 0 0 28px;
    color: var(--app-green);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 700;
}

.app-lead {
    max-width: 780px;
    margin: 0 0 15px;
    color: #ededed;
    font-size: clamp(1.08rem, 1.5vw, 1.3rem);
    line-height: 1.6;
}

.app-intro {
    max-width: 780px;
    margin: 0;
    color: var(--app-muted);
    font-size: 1.04rem;
    line-height: 1.65;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

    .app-tags span {
        padding: 8px 13px;
        border: 1px solid rgba(150, 191, 19, .35);
        border-radius: 999px;
        background: rgba(150, 191, 19, .06);
        color: #dbe8b5;
        font-size: .9rem;
    }

.app-video-frame {
    overflow: hidden;
    border: 1px solid #343434;
    border-radius: 18px;
    background: #000;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
}

    .app-video-frame video {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }


/* INTRO / SPLIT */

.app-split {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: clamp(45px, 8vw, 120px);
    align-items: start;
}

.app-copy {
    max-width: 780px;
    color: #d1d1d1;
    font-size: 1.08rem;
    line-height: 1.68;
}

    .app-copy p:first-child {
        margin-top: 0;
    }


/* PRODUKTE */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--app-border);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, 0)), var(--app-surface);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

    .product-card:hover {
        transform: translateY(-4px);
        border-color: rgba(150, 191, 19, .65);
        background: var(--app-surface-hover);
    }

.product-card-header {
    min-height: 108px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 22px;
    margin-bottom: 23px;
    border-bottom: 1px solid var(--app-border);
}

.product-logo {
    width: 105px;
    flex: 0 0 105px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .product-logo img {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 72px;
        object-fit: contain;
    }

.product-title {
    min-width: 0;
}

    .product-title h3 {
        margin: 0;
        color: #fff;
        font-size: 1.55rem;
        font-weight: 700;
        line-height: 1.18;
    }

        .product-title h3::after {
            content: "";
            display: block;
            width: 38px;
            height: 3px;
            margin-top: 11px;
            border-radius: 2px;
            background: var(--app-green);
        }

.product-description {
    color: #d4d4d4;
    font-size: .98rem;
    line-height: 1.62;
}

    .product-description p {
        margin-top: 0;
    }

    .product-description ul,
    .app-list {
        margin: 18px 0 0;
        padding: 0;
        list-style: none;
    }

        .product-description li,
        .app-list li {
            position: relative;
            padding-left: 23px;
            margin-bottom: 11px;
        }

            .product-description li::before,
            .app-list li::before {
                content: "";
                position: absolute;
                left: 0;
                top: .68em;
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background: var(--app-green);
            }

.product-price {
    margin-top: auto;
    padding: 28px 0 23px;
    color: #fff;
}

    .product-price h2,
    .product-price h3,
    .product-price h4 {
        margin: 0 0 8px;
        color: #fff;
        font-size: 1.55rem;
        font-weight: 700;
    }

    .product-price p {
        margin: 4px 0;
        color: var(--app-muted);
    }

.product-actions {
    display: grid;
    gap: 9px;
}

.product-btn {
    width: 100%;
    min-height: 47px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .035em;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

    .product-btn:not(:disabled):hover {
        transform: translateY(-1px);
    }

.product-btn-secondary {
    border-color: var(--app-green);
    background: transparent;
    color: var(--app-green);
}

    .product-btn-secondary:hover {
        background: rgba(150, 191, 19, .1);
    }

.product-btn-primary {
    border-color: var(--app-green);
    background: var(--app-green);
    color: #111;
}

    .product-btn-primary:hover {
        background: var(--app-green-hover);
    }

.product-btn-demo {
    border-color: #555;
    background: transparent;
    color: #fff;
}

    .product-btn-demo:hover {
        border-color: #aaa;
        background: rgba(255, 255, 255, .04);
    }

.product-btn:disabled {
    opacity: .4;
    cursor: default;
    transform: none;
}


/* INFO-BEREICHE */

.app-info-row {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(42px, 8vw, 120px);
    padding: 62px 0;
}

.app-info-title h2 {
    font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.app-info-content {
    max-width: 830px;
    color: #d1d1d1;
    font-size: 1.04rem;
    line-height: 1.65;
}

.app-info-lead {
    margin: 0 0 24px;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.55;
}

.app-list {
    margin-top: 0;
}

    .app-list.compact {
        margin-top: 19px;
    }

.app-divider {
    height: 1px;
    background: var(--app-border);
}

.app-big-fact {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

    .app-big-fact strong {
        color: var(--app-green);
        font-size: clamp(2.8rem, 5vw, 4.5rem);
        line-height: 1;
    }

    .app-big-fact span {
        color: #fff;
        font-size: 1.08rem;
    }


/* ZUSATZLEISTUNGEN */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    padding: 27px;
    border: 1px solid var(--app-border);
    border-radius: 16px;
    background: var(--app-surface);
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 22px;
}

.service-label {
    color: #fff;
    font-size: 1.18rem;
    font-weight: 700;
}

.service-price {
    flex: 0 0 auto;
    color: var(--app-green);
    font-size: 1.55rem;
    line-height: 1;
}

.service-note {
    margin: 10px 0 21px;
    color: var(--app-muted);
    font-size: .9rem;
}

.service-copy {
    margin: 18px 0 0;
    color: #d3d3d3;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 1199px) {
    .app-hero-grid {
        grid-template-columns: 1fr;
    }

    .app-hero-media {
        max-width: 900px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .app-wrap {
        width: min(calc(100% - 32px), var(--app-max));
    }

    .app-section {
        padding: 62px 0;
    }

    .app-hero {
        padding: 62px 0;
    }

    .app-split,
    .app-info-row {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .product-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 22px;
    }

    .product-card-header {
        min-height: 0;
    }

    .product-logo {
        width: 86px;
        flex-basis: 86px;
    }

        .product-logo img {
            max-height: 58px;
        }

    .product-title h3 {
        font-size: 1.35rem;
    }

    .app-info-row {
        padding: 48px 0;
    }

    .service-card-top {
        flex-direction: column;
        gap: 10px;
    }
}