/* ================================================================
   subpages.css  –  Shared styles for all Glücksgriff subpages
   Requires: css/website.css (fonts, variables, nav, contact, footer)
   ================================================================ */

/* ===== NAVIGATION DROPDOWN ===== */
.nav-menu li.has-dropdown {
    position: relative;
}
.nav-menu li.has-dropdown > a {
    cursor: pointer;
}
.nav-menu .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.97);
    border-top: 2px solid var(--accent);
    list-style: none;
    min-width: 240px;
    padding: 10px 0;
    z-index: 2000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
}
.nav-menu .dropdown li {
    padding: 0;
}
.nav-menu .dropdown li a {
    display: block;
    padding: 10px 22px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.nav-menu .dropdown li a:hover {
    background: var(--accent);
    color: #fff;
}
.nav-menu li.has-dropdown:hover .dropdown,
.nav-menu li.has-dropdown.open .dropdown {
    display: block;
}

@media (min-width: 1100px) {
    .nav-menu li.has-dropdown {
        padding-bottom: 14px;
        margin-bottom: -14px;
    }

    .nav-menu li.has-dropdown::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 14px;
    }

    .nav-menu .dropdown {
        top: 100%;
        margin-top: 8px;
    }
}

/* Mobile: dropdown stacks inline */
@media (max-width: 1099px) {
    .nav-menu .dropdown {
        position: static;
        transform: none;
        border-top: 1px solid rgba(232,73,15,0.4);
        box-shadow: none;
        padding: 6px 0 6px 16px;
        background: rgba(20,20,20,0.98);
    }
    .nav-menu .dropdown li a {
        padding: 8px 10px;
        font-size: 0.78rem;
    }
}

/* ===== SUBPAGE HERO ===== */
.sp-hero {
    position: relative;
    height: 100vh;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
/* Grain overlay layer (optional, set via child .sp-hero-grain) */
.sp-hero-grain {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}
/* Dark overlay always on top of bg/grain */
.sp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.65) 100%
    );
    z-index: 2;
}
.sp-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.sp-hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 13vw, 13em);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 10px 10px 20px rgba(0,0,0,0.5);
    line-height: 1;
    animation: spHeroSlide 0.9s ease-out 0.2s both;
}
.sp-hero-subtitle {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 3.2em);
    color: var(--accent);
    text-shadow: 6px 6px 12px rgba(0,0,0,0.5);
    line-height: 1.1;
    animation: spHeroFadeUp 0.9s ease-out 0.7s both;
}
@keyframes spHeroSlide {
    from { opacity: 0; transform: translateY(-35px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes spHeroFadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== TAPE DIVIDER (subpages) ===== */
.sp-tape {
    height: 90px;
    /* Prefer shared-warnband.png if it exists, otherwise fall back */
    background: url('../img/subpages/shared-warnband.png') repeat-x center / auto 100%,
                url('../img/website-subpage/warnband-website.png') repeat-x center / auto 100%;
    width: 100%;
    overflow: hidden;
    transition: background-position 0.15s linear;
}

/* ===== SECTION BASE ===== */
.sp-section {
    padding: 90px 80px;
    overflow: hidden;
}
.sp-section--black  { background: #000; }
.sp-section--dark   { background: #1A1A1A; }

/* ===== TWO-COLUMN LAYOUT ===== */
.sp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.sp-two-col--reverse .sp-col-text { order: 2; }
.sp-two-col--reverse .sp-col-image { order: 1; }

/* ===== COLUMN: TEXT ===== */
.sp-col-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sp-col-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-col-image img,
.sp-col-image svg {
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
    display: block;
}

/* ===== HEADINGS ===== */
.sp-h2-orange {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(3.2rem, 7vw, 6.5em);
    font-weight: 400;
    color: var(--accent);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 28px;
}
.sp-h2-white {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(3.2rem, 7vw, 6.5em);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 28px;
}
.sp-subheading {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== BODY TEXT ===== */
p.sp-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.02rem;
    font-weight: 400;
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 14px;
}
.sp-text p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.02rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 16px;
}
.sp-text p:last-child { margin-bottom: 0; }

/* ===== CTA TEXT + BUTTON ===== */
.sp-cta-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    line-height: 1.5;
}
.sp-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 14px 36px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
    margin-top: 8px;
    text-decoration: none;
}
.sp-btn:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== STEP / CARD GRID (UX 4 Steps) ===== */
.sp-step-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}
.sp-step-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(232,73,15,0.25);
    border-top: 3px solid var(--accent);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}
.sp-step-card:hover {
    border-color: var(--accent);
    border-top-color: var(--accent);
}
.sp-step-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.9);
    transition: filter 0.3s;
}
.sp-step-card:hover .sp-step-card-img {
    filter: brightness(0.85) saturate(1.1);
}
.sp-step-card-body {
    padding: 24px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sp-step-card-body h3 {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2em);
    font-weight: 400;
    color: var(--accent);
    text-transform: uppercase;
    line-height: 1.1;
}
.sp-step-card-body p {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.97rem;
    font-weight: 400;
    color: #ccc;
    line-height: 1.75;
}

/* ===== STAT BOXES (Responsive page) ===== */
.sp-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
    margin-bottom: 50px;
}
.sp-stat-box {
    background: rgba(232,73,15,0.12);
    border: 1px solid rgba(232,73,15,0.35);
    padding: 36px 24px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: background 0.3s;
}
.sp-stat-box:hover {
    background: rgba(232,73,15,0.22);
}
.sp-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5em);
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
}
.sp-stat-desc {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #ccc;
    line-height: 1.65;
    text-align: center;
}

/* ===== TEXT BOX (highlight box) ===== */
.sp-text-box {
    background: rgba(232,73,15,0.1);
    border-left: 4px solid var(--accent);
    padding: 22px 28px;
    margin-top: 24px;
}
.sp-text-box p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.7;
    margin: 0;
}

/* ===== CENTERED SECTION CONTENT ===== */
.sp-section-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .sp-section { padding: 60px 24px; }

    .sp-two-col {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .sp-two-col--reverse .sp-col-text { order: 1; }
    .sp-two-col--reverse .sp-col-image { order: 2; }

    .sp-step-grid {
        grid-template-columns: 1fr;
    }

    .sp-stat-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sp-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sp-h2-orange,
    .sp-h2-white {
        font-size: clamp(2.8rem, 10vw, 5em);
    }
    .sp-hero-content h1 {
        font-size: clamp(4rem, 18vw, 8em);
    }
}
@media (max-width: 600px) {
    .sp-section { padding: 50px 16px; }
    .sp-stat-grid { grid-template-columns: 1fr; }
    .sp-hero-content h1 { font-size: clamp(3.5rem, 20vw, 7em); }
    .sp-tape { height: 60px; }
}

/* ============================================================
   ALIASES – used in barrierefreiheit.html / social-media.html
   ============================================================ */

/* Background aliases */
.sp-bg-black { background: #000; }
.sp-bg-dark  { background: #1A1A1A; }

/* Two-column inner layout aliases */
.sp-two-col-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 90px 80px;
}
.sp-two-col-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sp-two-col-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-two-col-image img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    display: block;
}

/* Heading aliases */
.sp-heading-orange {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(3.2rem, 7vw, 6.5em);
    font-weight: 400;
    color: var(--accent);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 24px;
}
.sp-heading-white {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(3.2rem, 7vw, 6.5em);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 24px;
}
.sp-subheading-orange {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text in two-col sections */
.sp-two-col-text p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.02rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Checklist */
.sp-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sp-check-list li {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.sp-check-icon {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

/* CTA section */
.sp-cta {
    padding: 70px 80px;
    text-align: center;
}
.sp-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Intro section (social-media) */
.sp-intro {
    padding: 90px 80px;
}
.sp-intro-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.sp-intro-text p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #ddd;
    line-height: 1.85;
    margin-bottom: 14px;
}

/* Feature blocks (social-media) */
.sp-feature {
    padding: 70px 80px;
}
.sp-feature-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.sp-feature-text h2 {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 5em);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}
.sp-feature-text p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #ccc;
    line-height: 1.8;
}
.sp-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-feature-fa-icon {
    font-size: clamp(4rem, 8vw, 7rem);
    color: var(--accent);
    opacity: 0.85;
}

/* Responsive for aliases */
@media (max-width: 900px) {
    .sp-two-col-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 60px 24px;
    }
    .sp-feature { padding: 50px 24px; }
    .sp-feature-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sp-cta { padding: 50px 24px; }
    .sp-intro { padding: 60px 24px; }
}
@media (max-width: 600px) {
    .sp-two-col-inner { padding: 50px 16px; }
}

/* ============================================================
   BFSG PAGE: bfsg.html
   ============================================================ */

.sp-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero subtitle / subheadline */
.sp-hero-subtitle,
.sp-hero-subheadline {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 3em);
    color: var(--accent);
    text-shadow: 6px 6px 12px rgba(0,0,0,0.5);
    line-height: 1.1;
    margin-top: 12px;
    animation: spHeroFadeUp 0.9s ease-out 0.7s both;
}

/* Regulation cards */
.sp-regulation-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}
.sp-regulation-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(232,73,15,0.3);
    border-top: 3px solid rgba(232,73,15,0.5);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.3s;
}
.sp-regulation-card-highlight {
    border-top-color: var(--accent);
    background: rgba(232,73,15,0.08);
}
.sp-regulation-card-label {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8em);
    color: var(--accent);
    text-transform: uppercase;
    line-height: 1;
}
.sp-regulation-card p {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.97rem;
    font-weight: 400;
    color: #ccc;
    line-height: 1.7;
    margin: 0;
}
.sp-regulation-date {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.88rem !important;
    font-weight: 700;
    color: var(--accent) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing box */
.sp-pricing-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.sp-pricing-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(232,73,15,0.35);
    border-top: 3px solid var(--accent);
    padding: 40px 48px;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.sp-pricing-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ddd;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}
.sp-pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.sp-price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5em);
    color: var(--accent);
    line-height: 1;
}
.sp-price-label {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.sp-price-tax {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: #888;
}
.sp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    width: 100%;
}
.sp-pricing-features li {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.97rem;
    font-weight: 500;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sp-pricing-btn {
    margin-top: 8px;
}

/* Advantages grid */
.sp-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 44px;
}
.sp-advantage-item {
    background: rgba(232,73,15,0.08);
    border: 1px solid rgba(232,73,15,0.25);
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    transition: background 0.3s;
}
.sp-advantage-item:hover {
    background: rgba(232,73,15,0.15);
}
.sp-advantage-icon {
    font-size: 2rem;
    color: var(--accent);
}
.sp-advantage-item p {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sp-advantage-desc {
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: #ccc !important;
    line-height: 1.6;
}

/* ============================================================
   RECHTLICHES PAGE: rechtliches.html
   ============================================================ */

/* Stats grid (4-col) */
.sp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 44px;
}

/* Icon list grid */
.sp-icon-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
}
.sp-icon-list-centered {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 36px;
}
.sp-icon-list-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.sp-icon-list-centered .sp-icon-list-item {
    align-items: center;
    text-align: center;
}
.sp-icon-list-icon {
    width: 52px;
    height: 52px;
    background: rgba(232,73,15,0.15);
    border: 1px solid rgba(232,73,15,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    flex-shrink: 0;
}
.sp-icon-list-item span {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Legal cards (Impressum, Datenschutz, AGB) */
.sp-legal-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 44px;
}
.sp-legal-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(232,73,15,0.25);
    border-top: 3px solid var(--accent);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.3s;
}
.sp-legal-card:hover {
    background: rgba(232,73,15,0.06);
}
.sp-legal-card-icon {
    font-size: 2rem;
    color: var(--accent);
}
.sp-legal-card h3 {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2em);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
}
.sp-legal-card p {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.97rem;
    font-weight: 400;
    color: #ccc;
    line-height: 1.75;
    margin: 0;
}

/* Hero BFSG special layout */
.sp-hero-bfsg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    justify-content: center;
    text-align: center;
}
.sp-hero-bfsg-graphic {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.3;
    max-width: 300px;
}
.sp-hero-bfsg-graphic img {
    max-width: 100%;
    filter: brightness(0) invert(1);
}
.sp-hero-overlay-dark {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.75) 100%
    ) !important;
}

/* Responsive for new elements */
@media (max-width: 1100px) {
    .sp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-regulation-cards { grid-template-columns: 1fr; }
    .sp-advantages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .sp-legal-cards { grid-template-columns: 1fr; }
    .sp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-icon-list-centered { grid-template-columns: repeat(2, 1fr); }
    .sp-regulation-cards { grid-template-columns: 1fr; }
    .sp-advantages-grid { grid-template-columns: 1fr 1fr; }
    .sp-pricing-box { padding: 28px 24px; }
}
@media (max-width: 600px) {
    .sp-stats-grid { grid-template-columns: 1fr; }
    .sp-advantages-grid { grid-template-columns: 1fr; }
    .sp-icon-list-grid { grid-template-columns: 1fr; }
    .sp-icon-list-centered { grid-template-columns: repeat(2, 1fr); }
    .sp-hero-bfsg-graphic { display: none; }
}

/* ===== GRAFIK PAGE ===== */
body.grafik-page {
    --grafik-orange: #fa5800;
    --grafik-orange-dark: #d94b00;
    --grafik-shell-width: min(1280px, calc(100% - 48px));
    background: #000;
    color: #fff;
}

.grafik-page .nav-logo img {
    height: 54px;
    width: auto;
}

.grafik-page .nav-sticky .nav-logo img {
    height: 42px;
}

.grafik-shell {
    width: var(--grafik-shell-width);
    margin: 0 auto;
}

.grafik-hero,
.grafik-logo-hero,
.grafik-photo-hero,
.grafik-print-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.grafik-hero {
    min-height: 90vh;
    padding: 0 24px;
}

.grafik-hero-video,
.grafik-logo-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: grafik-video-drift 18s ease-in-out infinite alternate;
}

.grafik-hero-overlay,
.grafik-logo-hero-overlay,
.grafik-photo-hero-overlay,
.grafik-print-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.grafik-hero-overlay {
    background:
        radial-gradient(circle at 50% 35%, rgba(250,88,0,0.12), transparent 30%),
        linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.7) 100%);
}

.grafik-hero-content,
.grafik-logo-hero-content,
.grafik-photo-hero-content,
.grafik-print-hero-content {
    position: relative;
    z-index: 1;
}

.grafik-hero-content h1,
.grafik-logo-hero-content h2,
.grafik-photo-hero-content h2,
.grafik-print-hero-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow: 15px 15px 10px rgba(0,0,0,0.32);
}

.grafik-hero-content h1 {
    font-size: clamp(5rem, 13vw, 12rem);
}

.grafik-hero-content p,
.grafik-logo-hero-content p,
.grafik-photo-hero-content p,
.grafik-print-hero-content p {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(2rem, 4vw, 3.05rem);
    color: var(--grafik-orange);
    text-shadow: 10px 10px 10px rgba(0,0,0,0.28);
}

.grafik-page .ws-tape.grafik-tape {
    height: 118px;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0) 12%, rgba(0,0,0,0.65) 100%),
        url('../img/grafik/warnband-build.png') repeat-x center / 70% auto;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.5);
}

.grafik-page .ws-tape.grafik-tape--reverse {
    transform: scaleX(-1);
}

.grafik-anchor-overview {
    padding: 88px 0 110px;
    background: linear-gradient(180deg, #020202 0%, #0b0b0b 100%);
}

.grafik-anchor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.grafik-anchor-card {
    display: grid;
    place-items: center;
    gap: 20px;
    padding: 44px 28px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.grafik-anchor-card:hover {
    transform: translateY(-10px);
    border-color: rgba(250,88,0,0.6);
    background: rgba(250,88,0,0.08);
}

.grafik-anchor-icon {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border: 2px solid var(--grafik-orange);
    border-radius: 999px;
    color: var(--grafik-orange);
    font-size: 2rem;
}

.grafik-anchor-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}

.grafik-intro,
.grafik-logo-copy,
.grafik-process,
.grafik-photo-copy,
.grafik-service-list,
.grafik-print-copy,
.grafik-consulting,
.grafik-contact {
    position: relative;
}

.grafik-intro {
    padding: 104px 0 120px;
    background: #000;
}

.grafik-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.85fr);
    gap: 64px;
    align-items: center;
}

.grafik-intro-copy h2,
.grafik-process-copy h3,
.grafik-copy-panel h3,
.grafik-photo-copy h3,
.grafik-print-text h3,
.grafik-contact-address h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 0.95;
    text-transform: uppercase;
}

.grafik-intro-copy h2 {
    font-size: clamp(4.5rem, 9vw, 8rem);
    margin-bottom: 28px;
    color: var(--grafik-orange);
}

.grafik-intro-divider {
    width: min(240px, 30%);
    height: 20px;
    margin-bottom: 28px;
    background:
        linear-gradient(90deg, transparent 0%, transparent 8%, #fff 8%, #fff 10%, transparent 10%, transparent 16%, #fff 16%, #fff 18%, transparent 18%, transparent 24%, #fff 24%, #fff 26%, transparent 26%, transparent 100%);
    opacity: 0.72;
}

.grafik-intro-divider--orange {
    background:
        linear-gradient(90deg, transparent 0%, transparent 8%, var(--grafik-orange) 8%, var(--grafik-orange) 10%, transparent 10%, transparent 16%, var(--grafik-orange) 16%, var(--grafik-orange) 18%, transparent 18%, transparent 24%, var(--grafik-orange) 24%, var(--grafik-orange) 26%, transparent 26%, transparent 100%);
}

.grafik-copy-box,
.grafik-copy-panel {
    border-left: 5px solid var(--grafik-orange);
}

.grafik-copy-box {
    max-width: 760px;
    padding: 24px 28px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
}

.grafik-copy-text p,
.grafik-copy-box p,
.grafik-process-copy p,
.grafik-print-text p,
.grafik-contact-address p,
.grafik-consulting p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
}

.grafik-copy-box p + p,
.grafik-copy-text p + p,
.grafik-print-text p + p,
.grafik-contact-address p + p {
    margin-top: 12px;
}

.grafik-intro-art {
    justify-self: end;
    max-width: 460px;
    width: 100%;
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.grafik-intro-art img {
    display: block;
    width: 100%;
    height: auto;
}

.grafik-logo-hero {
    min-height: 100vh;
    padding: 0 24px;
}

.grafik-logo-hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.55) 100%);
}

.grafik-logo-hero-content h2 {
    font-size: clamp(5rem, 11vw, 10rem);
}

.grafik-logo-hero-content p {
    color: #fff;
}

.grafik-logo-copy {
    padding: 100px 0;
    background: #000;
}

.grafik-logo-copy::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/grafik/grafik-gear-black.svg') no-repeat right 6vw top 42px / min(28vw, 340px) auto;
    opacity: 0.95;
    pointer-events: none;
}

.grafik-copy-panel {
    position: relative;
    z-index: 1;
    max-width: 920px;
    padding: 32px 36px;
}

.grafik-copy-panel--light {
    color: #111;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.grafik-copy-panel--light h3 {
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    margin-bottom: 24px;
    color: var(--grafik-orange);
}

.grafik-copy-panel--logo {
    max-width: 760px;
    color: #fff;
    background: transparent;
    box-shadow: none;
}

.grafik-copy-panel--logo h3 {
    font-size: clamp(3.8rem, 7vw, 6.6rem);
    margin-bottom: 24px;
    color: var(--grafik-orange);
}

.grafik-copy-panel--logo .grafik-copy-text p {
    color: rgba(255,255,255,0.92);
}

.grafik-copy-panel--dark {
    max-width: 900px;
    margin-right: auto;
    color: #fff;
    background: rgba(0,0,0,0.76);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

.grafik-copy-panel--dark h3 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 22px;
}

.grafik-copy-panel--dark h4 {
    margin-top: 28px;
    margin-bottom: 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--grafik-orange);
    text-transform: uppercase;
}

.grafik-process {
    padding: 96px 0 110px;
    background:
        radial-gradient(circle at 15% 50%, rgba(250,88,0,0.16), transparent 28%),
        linear-gradient(180deg, #080808 0%, #111 100%);
}

.grafik-process-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.grafik-process-copy h3 {
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    margin-bottom: 20px;
}

.grafik-process-track {
    display: grid;
    gap: 12px;
    align-content: start;
}

.grafik-process-highlight {
    padding: 6px 0 14px;
    border-bottom: 2px solid var(--grafik-orange);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.grafik-process-line-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 8px 0 14px;
    border-top: 1px solid rgba(255,255,255,0.58);
}

.grafik-process-line-item span:last-child {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3.4vw, 2.7rem);
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ddd;
    transform: rotate(-6deg);
    transform-origin: left center;
}

.grafik-process-gear {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    font-size: 1.55rem;
    color: var(--grafik-orange);
}

.grafik-photo-hero {
    min-height: 100vh;
    padding: 0 24px;
    background: url('../img/grafik/bildbearbeitung-bg.png') center center / cover no-repeat;
}

.grafik-photo-hero-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(250,88,0,0.55) 100%);
}

.grafik-photo-hero-content h2 {
    font-size: clamp(5rem, 11vw, 9rem);
}

.grafik-photo-hero-content p {
    max-width: 960px;
    margin: 16px auto 0;
    color: #fff;
}

.grafik-photo-copy {
    padding: 110px 0 72px;
    background: #000;
    overflow: hidden;
}

.grafik-photo-copy::before,
.grafik-photo-copy::after {
    content: '';
    position: absolute;
    top: 44px;
    right: clamp(24px, 8vw, 130px);
    width: clamp(150px, 18vw, 240px);
    aspect-ratio: 1 / 2;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.grafik-photo-copy::before {
    background-image: url('../img/grafik/crane-orange.png');
    opacity: 0.92;
}

.grafik-photo-copy::after {
    background-image: url('../img/grafik/crane-white.svg');
    opacity: 0;
}

.grafik-photo-copy:hover::before { opacity: 0; }
.grafik-photo-copy:hover::after { opacity: 0.92; }

.grafik-copy-text--dark p,
.grafik-contact-address p,
.grafik-contact-address a {
    color: rgba(255,255,255,0.92);
}

.grafik-service-list {
    padding: 18px 0 78px;
    background: #000;
}

.grafik-service-row {
    display: block;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.14);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.grafik-service-row:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.grafik-service-row:hover {
    color: var(--grafik-orange);
    padding-left: 20px;
}

.grafik-print-hero {
    min-height: 100vh;
    padding: 0 24px;
    background: url('../img/grafik/print-bg.jpg') center center / cover no-repeat;
}

.grafik-print-hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.42) 100%);
}

.grafik-print-hero-content h2 {
    font-size: clamp(5rem, 11vw, 9rem);
}

.grafik-print-hero-content p {
    color: #fff;
}

.grafik-print-hero-content span {
    display: inline-block;
    margin-top: 12px;
    max-width: 880px;
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    color: var(--grafik-orange);
}

.grafik-print-copy {
    padding: 96px 0 86px;
    background: #000;
    color: #fff;
}

.grafik-print-stack {
    display: grid;
    gap: 44px;
}

.grafik-print-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.grafik-print-card--reverse {
    direction: rtl;
}

.grafik-print-card--reverse > * {
    direction: ltr;
}

.grafik-print-text h3 {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    margin-bottom: 24px;
    color: #fff;
}

.grafik-print-text p {
    color: rgba(255,255,255,0.88);
}

.grafik-print-visual {
    position: relative;
    min-height: 330px;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.68) 100%),
        url('../img/grafik/print-bg.jpg') center center / cover no-repeat;
    box-shadow: 0 26px 70px rgba(0,0,0,0.18);
}

.grafik-print-visual::before {
    content: '';
    position: absolute;
    inset: 14% 17%;
    border: 1px solid rgba(255,255,255,0.58);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    transform: rotate(-8deg);
}

.grafik-print-visual::after {
    content: 'PRINT';
    position: absolute;
    right: 18px;
    bottom: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 6rem);
    color: rgba(255,255,255,0.86);
    letter-spacing: 0.08em;
}

.grafik-print-visual--muted::before {
    inset: 18% 12%;
    transform: rotate(7deg);
}

.grafik-print-visual--muted::after {
    content: 'CMYK';
}

.grafik-cta-row {
    margin-top: 28px;
}

.grafik-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border: 2px solid var(--grafik-orange);
    background: transparent;
    color: var(--grafik-orange);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.grafik-btn:hover {
    background: var(--grafik-orange);
    color: #fff;
    transform: translateY(-2px);
}

.grafik-btn--block {
    width: 100%;
}

.grafik-consulting {
    padding: 52px 0 76px;
    background: #000;
    color: #fff;
}

.grafik-consulting .grafik-shell {
    position: relative;
    padding: 80px clamp(20px, 6vw, 80px);
    background:
        url('../img/grafik/kreuz-kontur-orange.png') no-repeat left top / 130px auto,
        url('../img/grafik/kreuz-konturen-orange.png') no-repeat right top / 220px auto;
}

.grafik-consulting p {
    max-width: 880px;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
    color: #fff;
    text-transform: uppercase;
}

.grafik-contact {
    padding: 30px 0 96px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.84), rgba(0,0,0,0.92)),
        #000;
    overflow: hidden;
}

.grafik-contact::before,
.grafik-contact::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.grafik-contact::before {
    background: url('../img/grafik/kontakt-white-outline.png') no-repeat top center / min(98%, 1400px) auto;
    opacity: 0.82;
}

.grafik-contact::after {
    background: url('../img/grafik/kontakt-orange-shape.png') no-repeat center 56px / min(74%, 1080px) auto;
    opacity: 0.22;
}

.grafik-contact-anchor {
    position: absolute;
    top: 0;
}

.grafik-contact-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr) minmax(260px, 0.8fr);
    gap: 28px;
    align-items: start;
    padding-top: clamp(120px, 14vw, 180px);
}

.grafik-contact-form,
.grafik-contact-map,
.grafik-contact-address {
    background: rgba(0,0,0,0.62);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.grafik-contact-form {
    padding: 32px 28px;
}

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

.grafik-contact-form input,
.grafik-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    padding: 16px 18px;
}

.grafik-contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.grafik-contact-form input::placeholder,
.grafik-contact-form textarea::placeholder {
    color: rgba(255,255,255,0.68);
}

.grafik-contact-map {
    overflow: hidden;
}

.grafik-contact-map iframe {
    display: block;
    width: 100%;
    min-height: 340px;
    border: 0;
    filter: grayscale(1) contrast(0.96);
}

.grafik-contact-address {
    padding: 28px;
}

.grafik-contact-address h3 {
    font-size: clamp(2.2rem, 4.8vw, 3.6rem);
    margin-bottom: 18px;
}

.grafik-contact-address a {
    transition: color 0.2s ease;
}

.grafik-contact-address a:hover {
    color: var(--grafik-orange);
}

@keyframes grafik-video-drift {
    from { transform: scale(1.08) translate3d(0, 0, 0); }
    to { transform: scale(1.16) translate3d(0, 2%, 0); }
}

@media (max-width: 1279px) {
    body.grafik-page {
        --grafik-shell-width: min(1280px, calc(100% - 40px));
    }

    .grafik-anchor-grid,
    .grafik-process-track,
    .grafik-contact-inner {
        gap: 20px;
    }

    .grafik-intro-layout,
    .grafik-process-layout,
    .grafik-print-card {
        grid-template-columns: 1fr;
    }

    .grafik-intro-art {
        justify-self: start;
        max-width: 400px;
    }

    .grafik-copy-panel,
    .grafik-copy-panel--dark {
        max-width: none;
    }

    .grafik-contact-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grafik-contact-form {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    body.grafik-page {
        --grafik-shell-width: calc(100% - 32px);
    }

    .grafik-page .ws-tape.grafik-tape {
        height: 78px;
        background-size: 650px auto;
    }

    .grafik-anchor-grid,
    .grafik-contact-inner {
        grid-template-columns: 1fr;
    }

    .grafik-anchor-overview {
        padding: 64px 0 74px;
    }

    .grafik-intro,
    .grafik-logo-copy,
    .grafik-process,
    .grafik-photo-copy,
    .grafik-print-copy,
    .grafik-contact {
        padding-left: 0;
        padding-right: 0;
    }

    .grafik-photo-copy::before,
    .grafik-photo-copy::after {
        right: 18px;
        width: 140px;
    }

    .grafik-consulting .grafik-shell {
        padding: 96px 20px 28px;
        background-position: left top, right top;
        background-size: 96px auto, 150px auto;
    }

    .grafik-contact-inner {
        padding-top: 108px;
    }
}

@media (max-width: 640px) {
    .grafik-page .nav-logo img {
        height: 44px;
    }

    .grafik-page .nav-sticky .nav-logo img {
        height: 38px;
    }

    .grafik-hero,
    .grafik-logo-hero,
    .grafik-photo-hero,
    .grafik-print-hero {
        min-height: 72vh;
    }

    .grafik-copy-box,
    .grafik-copy-panel,
    .grafik-contact-form,
    .grafik-contact-address {
        padding: 24px 20px;
    }

    .grafik-process-line-item {
        gap: 14px;
        padding: 8px 0 12px;
    }

    .grafik-process-line-item span:last-child {
        font-size: 1.6rem;
    }

    .grafik-service-row {
        padding: 18px 0;
    }

    .grafik-consulting {
        padding-bottom: 48px;
    }

    .grafik-consulting p {
        line-height: 0.95;
    }

.grafik-contact-map iframe {
        min-height: 280px;
    }
}

/* ===== LIVE-STYLE SUBPAGES ===== */
body.gl-live-page {
    --grafik-shell-width: min(1280px, calc(100% - 48px));
    background: #000;
    color: #fff;
}

.gl-live-page .nav-logo img,
.social-live-page .nav-logo img,
.legal-live-page .nav-logo img {
    height: 54px;
    width: auto;
}

.gl-live-page .nav-sticky .nav-logo img,
.social-live-page .nav-sticky .nav-logo img,
.legal-live-page .nav-sticky .nav-logo img {
    height: 42px;
}

.gl-live-page .ws-tape.grafik-tape {
    height: 118px;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0) 12%, rgba(0,0,0,0.65) 100%),
        url('../img/subpages/shared-warnband.png') repeat-x center / auto 100%,
        url('../img/grafik/warnband-build.png') repeat-x center / 70% auto;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.5);
}

.shopx-payment-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-live-hero .clone-hero-video {
    filter: saturate(0.95);
}

.shop-page [data-aos],
.social-live-page [data-aos],
.legal-live-page [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 900px) {
    body.gl-live-page {
        --grafik-shell-width: calc(100% - 32px);
    }

    .gl-live-page .ws-tape.grafik-tape {
        height: 78px;
        background-size: auto 100%, 650px auto;
    }
}

/* ============================================================
   ONLINE SHOP / SOCIAL MEDIA / RECHTLICHES
   ============================================================ */

body.shop-page,
body.social-live-page,
body.legal-page {
    background: #000;
    color: #fff;
}

.shop-page main,
.social-live-page main,
.legal-page main {
    background: #000;
}

.clone-shell {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.clone-hero {
    position: relative;
    min-height: 90vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.clone-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clone-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.66) 100%);
}

.clone-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
}

.clone-hero-content h1,
.clone-hero-content h2 {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 12vw, 9rem);
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow: 0 12px 24px rgba(0,0,0,0.48);
}

.clone-hero-content p {
    margin-top: 18px;
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: #fff;
    text-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

.clone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    border: 2px solid var(--accent);
    background: var(--accent);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0,0,0,0.42);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.clone-btn:hover {
    transform: translateY(-2px);
    background: transparent;
    color: var(--accent);
}

.shop-page .ws-tape.grafik-tape,
.social-live-page .ws-tape.grafik-tape,
.legal-page .ws-tape.grafik-tape {
    height: 118px;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0) 12%, rgba(0,0,0,0.65) 100%),
        url('../img/subpages/shared-warnband.png') repeat-x center / 70% auto;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.5);
}

/* Online shop */

.shop-hero {
    background-image: url('../img/online-shop/hero-shop.jpg');
}

.shop-anchors {
    padding: 72px 0 80px;
    background: #000;
}

.shop-anchor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.shop-anchor-card {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 28px 22px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.02);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.shop-anchor-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.shop-anchor-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border: 3px solid rgba(255,255,255,0.88);
    border-radius: 999px;
    color: #fff;
    font-size: 2rem;
}

.shop-anchor-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.shop-intro {
    position: relative;
    padding: 92px 0 46px;
    background:
        url('../img/online-shop/shopping-cart-white.png') no-repeat right 9vw top 82px / min(18vw, 220px) auto,
        url('../img/subpages/shared-kreuz-konturen-orange.png') no-repeat right bottom / min(30vw, 420px) auto,
        #000;
}

.shop-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.4fr);
    gap: 48px;
    align-items: end;
}

.shop-intro-copy h2,
.shop-payment-copy h3,
.shop-detail-copy h3,
.social-intro-copy h2,
.social-community-copy h3,
.social-feature-copy h3,
.social-final-copy h3,
.legal-intro-copy h2,
.legal-web-copy h2,
.legal-shop-law-copy h2,
.legal-card-heading h2,
.legal-stats h2,
.legal-shield-copy h3 {
    margin: 0 0 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 6.8vw, 6.8rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.shop-intro-copy h2,
.shop-payment-copy h3,
.legal-intro-copy h2,
.legal-card-heading h2,
.legal-stats h2 {
    color: var(--accent);
}

.shop-copy-panel,
.social-copy-panel,
.social-community-copy,
.shop-detail-copy--border,
.legal-copy-panel {
    padding-left: 20px;
    border-left: 5px solid var(--accent);
}

.shop-copy-panel p,
.shop-detail-copy p,
.shop-payment-copy p,
.social-copy-panel p,
.social-community-copy p,
.social-feature-copy p,
.social-final-copy p,
.social-final-cta p,
.legal-copy-panel p,
.legal-web-copy p,
.legal-shop-law-copy p,
.legal-card-heading p,
.legal-card p,
.legal-stat p,
.legal-shield-copy p,
.legal-cta p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    line-height: 1.82;
    color: rgba(255,255,255,0.9);
}

.shop-intro-side {
    text-align: right;
}

.shop-intro-side h3 {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4.2rem, 7vw, 7rem);
    line-height: 0.94;
    color: #fff;
    text-transform: uppercase;
}

.shop-benefits {
    padding: 10px 0 100px;
    background: #000;
}

.shop-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.shop-benefit {
    padding: 34px 28px 30px;
    text-align: center;
    border-right: 4px solid var(--accent);
    border-bottom: 4px solid var(--accent);
}

.shop-benefit:nth-child(3n) {
    border-right: 0;
}

.shop-benefit:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.shop-benefit i {
    font-size: 3.2rem;
    color: #fff;
}

.shop-benefit h3 {
    margin: 18px 0 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 0.96;
    text-transform: uppercase;
}

.shop-benefit p {
    margin: 0 auto;
    max-width: 290px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
}

.shop-payment-hero {
    min-height: 78vh;
}

.shop-payment-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.56) 100%);
}

.shop-payment-hero-content h2 {
    color: #fff;
}

.shop-payment-intro,
.shop-payment-detail,
.social-intro,
.social-feature,
.social-final-band,
.legal-intro,
.legal-shop-law,
.legal-card-section,
.legal-stats,
.legal-shield,
.legal-cta {
    position: relative;
    overflow: hidden;
}

.shop-payment-intro {
    padding: 96px 0 60px;
    background:
        url('../img/online-shop/world-network.svg') no-repeat center center / min(70vw, 920px) auto,
        #000;
}

.shop-payment-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
    gap: 52px;
    align-items: center;
}

.shop-payment-brands {
    display: grid;
    gap: 24px;
    justify-items: center;
}

.shop-payment-brands img {
    max-width: min(260px, 100%);
    max-height: 120px;
    object-fit: contain;
}

.shop-payment-detail {
    padding: 80px 0;
    background: #000;
}

.shop-payment-detail--world {
    min-height: 420px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.92)),
        url('../img/online-shop/world-network.svg') no-repeat center center / min(72vw, 980px) auto;
}

.shop-detail-layout--split {
    display: grid;
    grid-template-columns: minmax(240px, 0.44fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.shop-detail-art img {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.shop-payment-detail--flash {
    padding-top: 40px;
}

.shop-payment-detail--automation::after {
    content: '';
    position: absolute;
    inset: auto auto 0 0;
    width: 180px;
    height: 180px;
    background: url('../img/online-shop/klecks-orange.svg') no-repeat center / contain;
    opacity: 0.55;
}

.shop-detail-copy--border {
    max-width: 700px;
}

/* Social */

.social-hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.48) 100%);
}

.social-hero .clone-hero-content h1 {
    color: var(--accent);
}

.social-intro {
    padding: 110px 0;
    background:
        url('../img/social-media/hearts.png') no-repeat right 8vw top 110px / min(22vw, 320px) auto,
        #000;
}

.social-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.95fr);
    gap: 56px;
    align-items: start;
}

.social-community-copy h3,
.social-feature-copy h3,
.social-final-copy h3 {
    color: #fff;
}

.social-cta-ribbon {
    padding: 70px 0;
    background:
        url('../img/subpages/shared-kreuz-kontur-orange.png') no-repeat left 4vw center / min(18vw, 230px) auto,
        #000;
}

.social-cta-ribbon-inner {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding-left: min(14vw, 180px);
}

.social-cta-ribbon-inner::after {
    content: '';
    width: min(420px, 80%);
    height: 6px;
    margin-top: 16px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.8));
    mask: repeating-linear-gradient(90deg, #000 0 10px, transparent 10px 20px);
    opacity: 0.9;
}

.social-cta-ribbon-inner p,
.social-final-cta p,
.legal-cta p {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1;
    text-transform: uppercase;
}

.social-feature {
    padding: 110px 0;
    background-color: #000;
}

.social-feature--group,
.social-feature--phone {
    background-image: url('../img/subpages/shared-spitze-kopie.png');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: min(100%, 1200px) auto;
}

.social-feature-layout--split {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 54px;
    align-items: center;
}

.social-feature-layout--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
}

.social-feature-art img {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.social-feature-art--phone img {
    max-width: 320px;
}

.social-final-band {
    padding: 110px 0;
    background:
        url('../img/subpages/shared-kreuz-konturen-orange.png') no-repeat left 4vw top 80px / min(18vw, 260px) auto,
        #000;
}

.social-final-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 38px;
    align-items: end;
}

.social-final-cta {
    display: grid;
    justify-items: start;
    gap: 20px;
    padding-left: 22px;
    border-left: 5px solid var(--accent);
}

/* Legal */

.legal-hero {
    background-image: url('../img/rechtliches/hero-legal.jpg');
}

.legal-hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.legal-intro {
    padding: 110px 0 120px;
    background:
        url('../img/rechtliches/paragraph-cutout.png') no-repeat right 8vw center / min(24vw, 300px) auto,
        url('../img/subpages/shared-spitze-kopie.png') no-repeat 14vw top / min(48vw, 760px) auto,
        #000;
}

.legal-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr);
}

.legal-web {
    padding: 0 0 110px;
    background: #000;
}

.legal-web::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 280px;
    background: var(--accent);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

.legal-web-inner {
    position: relative;
    z-index: 1;
    padding-top: 140px;
}

.legal-web-copy h2 {
    max-width: 780px;
    font-size: clamp(4rem, 8vw, 7.2rem);
    color: #fff;
}

.legal-web-copy p {
    max-width: 980px;
    color: var(--accent);
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(2.2rem, 4.8vw, 3.6rem);
    line-height: 1.18;
}

.legal-icon-list {
    margin-top: 34px;
    display: grid;
    gap: 0;
}

.legal-icon-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
}

.legal-icon-item i {
    color: var(--accent);
    font-size: 1.8rem;
}

.legal-shop-law {
    padding: 100px 0;
    background: #0d0d0d;
}

.legal-shop-law-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.45fr);
    gap: 54px;
    align-items: center;
}

.legal-kicker,
.legal-card-subtitle {
    margin: 0 0 12px;
    color: var(--accent);
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
}

.legal-shop-law-art img,
.legal-shield-art img {
    display: block;
    width: 100%;
    border-radius: 24px;
}

.legal-card-section {
    padding: 100px 0;
    background: #000;
}

.legal-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 42px;
}

.legal-card,
.legal-stat {
    padding: 28px 26px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 4px solid var(--accent);
}

.legal-card h3,
.legal-stat h3 {
    margin: 0 0 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.legal-stats {
    padding: 100px 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.92), rgba(0,0,0,0.92)),
        url('../img/rechtliches/adobe-legal.jpeg') no-repeat center center / cover;
}

.legal-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 36px;
}

.legal-shield {
    padding: 110px 0;
    background: #000;
}

.legal-shield-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.legal-cta {
    padding: 84px 0;
    background:
        linear-gradient(180deg, rgba(255,75,16,0.45), rgba(255,75,16,0.12)),
        #000;
}

.legal-cta-inner {
    display: grid;
    justify-items: center;
    gap: 18px;
    text-align: center;
}

/* Shared responsive */

@media (max-width: 1100px) {
    .shop-anchor-grid,
    .shop-benefit-grid,
    .social-intro-layout,
    .social-feature-layout--split,
    .social-final-band-inner,
    .legal-shop-law-layout,
    .legal-card-grid,
    .legal-shield-layout {
        grid-template-columns: 1fr;
    }

    .shop-intro-layout,
    .shop-payment-intro-layout,
    .shop-detail-layout--split {
        grid-template-columns: 1fr;
    }

    .shop-intro-side {
        text-align: left;
    }

    .shop-benefit:nth-child(n) {
        border-right: 0;
        border-bottom: 4px solid var(--accent);
    }

    .shop-benefit:last-child {
        border-bottom: 0;
    }

    .social-cta-ribbon-inner,
    .social-final-cta {
        padding-left: 0;
        border-left: 0;
    }

    .legal-stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .clone-shell {
        width: calc(100% - 32px);
    }

    .clone-hero {
        min-height: 72vh;
    }

    .shop-page .ws-tape.grafik-tape,
    .social-live-page .ws-tape.grafik-tape,
    .legal-page .ws-tape.grafik-tape {
        height: 78px;
        background-size: 650px auto;
    }

    .shop-intro,
    .shop-payment-intro,
    .shop-payment-detail,
    .social-intro,
    .social-feature,
    .social-final-band,
    .legal-intro,
    .legal-shop-law,
    .legal-card-section,
    .legal-stats,
    .legal-shield,
    .legal-cta {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .shop-intro,
    .social-intro,
    .legal-intro {
        background-size: 180px auto, 240px auto, auto;
    }

    .social-feature--group,
    .social-feature--phone {
        background-size: 420px auto;
    }

    .legal-web::before {
        height: 180px;
    }

    .legal-web-inner {
        padding-top: 92px;
    }
}

/* ===== LIVE PAGE CLONES ===== */
:root {
    --clone-orange: #fe4716;
    --clone-orange-soft: #ff6a3d;
    --clone-black: #050505;
    --clone-panel: #111;
    --clone-panel-soft: #191919;
    --clone-copy: rgba(255,255,255,0.88);
}

.subpage-shell {
    width: min(1280px, calc(100% - 64px));
    margin: 0 auto;
}

.social-live-page,
.legal-live-page,
.shop-page {
    background: #000;
    color: #fff;
}

.social-live-hero,
.legal-live-hero,
.shopx-hero,
.shopx-payment-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.social-live-tape,
.legal-live-tape {
    height: 118px;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0) 12%, rgba(0,0,0,0.68) 100%),
        url('../img/subpages/shared-warnband.png') repeat-x center / auto 100%;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.5);
}

/* Social Media */
.social-live-hero {
    display: grid;
    place-items: center;
    text-align: center;
    background:
        radial-gradient(circle at 50% 40%, rgba(255,125,0,0.42), transparent 24%),
        radial-gradient(circle at 32% 35%, rgba(49,155,255,0.3), transparent 28%),
        radial-gradient(circle at 68% 35%, rgba(255,70,22,0.25), transparent 26%),
        linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.82)),
        linear-gradient(180deg, #090909 0%, #020202 100%);
}

.social-live-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg,
            transparent 0,
            transparent 8%,
            rgba(255,120,60,0.07) 8%,
            rgba(255,120,60,0.07) 9%,
            transparent 9%,
            transparent 17%,
            rgba(62,132,255,0.08) 17%,
            rgba(62,132,255,0.08) 18%,
            transparent 18%,
            transparent 100%);
    filter: blur(1px);
    opacity: 0.85;
}

.social-live-hero-overlay,
.legal-live-hero-overlay,
.shopx-hero-overlay,
.shopx-payment-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.social-live-hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.78) 100%);
}

.social-live-hero-ribbon {
    position: absolute;
    width: clamp(180px, 22vw, 330px);
    height: clamp(180px, 22vw, 330px);
    background: var(--clone-orange);
    opacity: 0.95;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.social-live-hero-ribbon--left {
    left: -4vw;
    bottom: -8vw;
}

.social-live-hero-ribbon--right {
    right: -4vw;
    top: 32%;
    transform: scaleX(-1);
}

.social-live-hero-content,
.legal-live-hero-content,
.shopx-hero-content,
.shopx-payment-content {
    position: relative;
    z-index: 1;
}

.social-live-hero-content h1,
.legal-live-hero-content h1,
.shopx-hero-content h1,
.shopx-payment-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 11vw, 9.5rem);
    line-height: 0.92;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 0 14px 24px rgba(0,0,0,0.45);
}

.social-live-hero-content p,
.legal-live-kicker,
.shopx-hero-content p,
.shopx-payment-content p {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(1.7rem, 3vw, 3rem);
    color: #fff;
    text-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.social-live-intro,
.social-live-feature,
.social-live-cta,
.legal-live-intro,
.legal-live-strip,
.legal-live-paper,
.legal-live-cards,
.legal-live-stats,
.legal-live-shield,
.shopx-links,
.shopx-intro,
.shopx-payment-intro,
.shopx-payment-rows,
.shopx-cta {
    position: relative;
    overflow: hidden;
}

.social-live-intro {
    padding: 140px 0 130px;
    background:
        radial-gradient(circle at 80% 18%, rgba(255,96,45,0.16), transparent 20%),
        linear-gradient(180deg, #020202 0%, #080808 100%);
}

.social-live-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 42px;
    align-items: start;
}

.social-live-copy h2,
.social-live-community-card h3,
.social-live-feature-copy h2,
.social-live-cta-inner p,
.legal-live-intro-copy h2,
.legal-live-strip-copy h2,
.legal-live-paper h2,
.legal-live-card h3,
.legal-live-stats h2,
.legal-live-stat h3,
.legal-live-shield-copy h2,
.shopx-intro-copy h2,
.shopx-intro-copy h3,
.shopx-benefit-card h4,
.shopx-payment-copy h3,
.shopx-row-copy h3,
.shopx-cta p {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 0.03em;
}

.social-live-copy h2,
.legal-live-intro-copy h2,
.shopx-intro-copy h2,
.legal-live-stats h2,
.shopx-intro-copy h3 {
    font-size: clamp(3.6rem, 7vw, 6.5rem);
    color: var(--clone-orange);
    margin-bottom: 22px;
}

.social-live-copy p,
.social-live-community-card p,
.social-live-feature-copy p,
.legal-live-intro-copy p,
.legal-live-strip-copy p,
.legal-live-paper p,
.legal-live-card p,
.legal-live-stat p,
.legal-live-shield-copy p,
.shopx-copy-box p,
.shopx-row-copy p,
.shopx-cta p {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.8;
    color: var(--clone-copy);
}

.social-live-community-card {
    position: relative;
    padding: 12px 0 0 10px;
    border-left: 5px solid var(--clone-orange);
    background: transparent;
    box-shadow: none;
}

.social-live-community-card::after {
    content: '';
    position: absolute;
    inset: auto -7% -9% auto;
    width: clamp(160px, 18vw, 250px);
    aspect-ratio: 1;
    background: url('../img/social-media/hearts.png') no-repeat center / contain;
    opacity: 0.6;
    pointer-events: none;
}

.social-live-community-card h3 {
    font-size: clamp(4rem, 7vw, 6.4rem);
    margin-bottom: 24px;
    color: var(--clone-orange);
}

.social-live-cta-row {
    margin-top: 26px;
}

.social-live-cta-row p {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.6rem);
    line-height: 1;
    color: var(--clone-orange);
}

.social-live-cta-row .grafik-btn {
    margin-top: 22px;
}

.social-live-feature {
    padding: 120px 0;
    background: #000;
}

.social-live-feature::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(26vw, 360px);
    background: var(--clone-orange);
    opacity: 1;
    pointer-events: none;
}

.social-live-feature--left::before {
    left: -8vw;
    clip-path: polygon(0 82%, 100% 18%, 100% 100%, 0 100%);
}

.social-live-feature--right::before {
    right: -8vw;
    clip-path: polygon(0 0, 100% 0, 0 80%);
}

.social-live-feature-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: 74px;
    align-items: center;
}

.social-live-feature--right .social-live-feature-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.social-live-feature-art,
.social-live-feature-copy {
    position: relative;
    z-index: 1;
}

.social-live-feature-copy h2 {
    font-size: clamp(3.4rem, 5.8vw, 5.8rem);
    margin-bottom: 22px;
    color: #fff;
}

.social-live-feature-art img {
    display: block;
    max-width: min(100%, 560px);
    margin: 0 auto;
}

.social-live-feature-art--stacked {
    display: grid;
    gap: 18px;
}

.social-live-feature-art--stacked img:last-child {
    max-width: min(100%, 380px);
}

.social-live-feature--left {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.98), rgba(0,0,0,0.98)),
        url('../img/social-media/spitze-left.png') no-repeat left top / min(420px, 42vw) auto;
}

.social-live-feature--right {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.98), rgba(0,0,0,0.98)),
        url('../img/social-media/spitze-right.png') no-repeat right center / min(520px, 48vw) auto;
}

.social-live-feature--hearts .social-live-feature-art--graph {
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
}

.social-live-roi-panel {
    padding: 54px 42px;
    border-left: 5px solid #fff;
    background: linear-gradient(135deg, rgba(254,71,22,1) 0%, rgba(255,110,70,0.92) 100%);
    box-shadow: 0 30px 80px rgba(0,0,0,0.34);
}

.social-live-roi-panel span {
    display: block;
    margin-bottom: 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 6rem);
    line-height: 0.9;
}

.social-live-roi-panel p {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: #fff;
}

.social-live-cta {
    padding: 110px 0 130px;
    background: #000;
}

.social-live-cta-inner {
    text-align: center;
}

.social-live-cta-inner p {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    color: #fff;
}

.social-live-cta-inner p:last-of-type {
    color: var(--clone-orange);
}

.social-live-cta-inner .grafik-btn {
    margin-top: 24px;
}

/* Rechtliches */
.legal-live-hero {
    display: grid;
    place-items: center;
    background: url('../img/rechtliches/hero-legal.jpg') center center / cover no-repeat;
}

.legal-live-hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(254,71,22,0.26) 50%, rgba(0,0,0,0.84) 100%);
}

.legal-live-intro {
    padding: 150px 0 140px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.98), rgba(0,0,0,0.98)),
        url('../img/rechtliches/spitze-right.png') no-repeat right top / min(520px, 46vw) auto;
}

.legal-live-intro-layout,
.legal-live-shield-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    gap: 44px;
    align-items: center;
}

.legal-live-intro-art img,
.legal-live-shield-art img {
    display: block;
    max-width: min(100%, 420px);
    margin: 0 auto;
}

.legal-live-strip {
    padding: 118px 0;
}

.legal-live-strip--website {
    background:
        linear-gradient(180deg, rgba(7,7,7,0.98), rgba(7,7,7,0.98)),
        url('../img/rechtliches/spitze-right.png') no-repeat right top / min(480px, 44vw) auto;
}

.legal-live-strip--shop {
    background:
        linear-gradient(180deg, rgba(254,71,22,0.92), rgba(254,71,22,0.92)),
        url('../img/rechtliches/legal-paper.jpg') center center / cover no-repeat;
}

.legal-live-strip-copy {
    max-width: 820px;
    padding: 46px 50px;
    border-left: 5px solid var(--clone-orange);
    background: rgba(0,0,0,0.46);
    backdrop-filter: blur(8px);
}

.legal-live-strip--shop .legal-live-strip-copy {
    border-left-color: #fff;
    background: rgba(0,0,0,0.58);
}

.legal-live-strip-copy h2,
.legal-live-paper h2,
.legal-live-shield-copy h2 {
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    margin-bottom: 18px;
    color: #fff;
}

.legal-live-strip-copy ul {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.legal-live-strip-copy li {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.22);
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    color: #fff;
}

.legal-live-kicker {
    margin-bottom: 14px;
    color: #fff;
}

.legal-live-paper {
    padding: 150px 0 120px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.75)),
        url('../img/rechtliches/legal-paper.jpg') center center / cover no-repeat;
}

.legal-live-paper-inner {
    max-width: 920px;
    text-align: center;
}

.legal-live-cards {
    padding: 42px 0 128px;
    background: #000;
}

.legal-live-card-grid,
.legal-live-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.legal-live-card {
    padding: 32px 28px;
    border-top: 4px solid var(--clone-orange);
    background: #111;
    box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.legal-live-card h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
    color: var(--clone-orange);
}

.legal-live-stats {
    padding: 140px 0;
    background:
        linear-gradient(180deg, #070707 0%, #111 100%),
        url('../img/rechtliches/paragraph-square.png') no-repeat right 8% center / min(18vw, 220px) auto;
}

.legal-live-stats h2 {
    margin-bottom: 36px;
    text-align: center;
}

.legal-live-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.legal-live-stat {
    min-height: 100%;
    padding: 40px 28px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    text-align: center;
}

.legal-live-stat h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--clone-orange);
}

.legal-live-shield {
    padding: 140px 0 150px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.98), rgba(0,0,0,0.98)),
        url('../img/rechtliches/spitze-right.png') no-repeat left bottom / min(480px, 44vw) auto;
}

.legal-live-shield-cta {
    margin-top: 20px;
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1;
    color: var(--clone-orange);
}

.legal-live-shield-copy .grafik-btn {
    margin-top: 24px;
}

.legal-live-strip-copy .grafik-btn {
    margin-top: 28px;
}

/* Online Shop */
.shopx-hero {
    display: grid;
    place-items: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.68) 100%),
        url('../img/online-shop/hero-shop.jpg') center center / cover no-repeat;
}

.shopx-hero-overlay {
    background:
        radial-gradient(circle at 50% 54%, rgba(255,255,255,0.12), transparent 20%),
        linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.45));
}

.shopx-links {
    padding: 62px 0 78px;
    background: #030303;
}

.shopx-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.shopx-link-card {
    display: grid;
    place-items: center;
    gap: 18px;
    min-height: 210px;
    padding: 26px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.shopx-link-card:hover {
    transform: translateY(-8px);
    border-color: rgba(254,71,22,0.65);
    background: rgba(254,71,22,0.08);
}

.shopx-link-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border: 2px solid var(--clone-orange);
    border-radius: 999px;
    color: var(--clone-orange);
    font-size: 2rem;
}

.shopx-link-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.shopx-intro {
    padding: 146px 0 160px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.98), rgba(0,0,0,0.98)),
        url('../img/online-shop/cart-white.png') no-repeat right 7vw top 72px / min(18vw, 240px) auto;
}

.shopx-intro-copy {
    max-width: 980px;
}

.shopx-copy-box {
    max-width: 760px;
    padding: 24px 28px;
    margin-bottom: 30px;
    border-left: 5px solid var(--clone-orange);
    background: transparent;
}

.shopx-copy-box--line {
    margin-bottom: 0;
}

.shopx-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.shopx-benefit-card {
    min-height: 100%;
    padding: 34px 28px;
    border-top: 0;
    border-left: 1px solid rgba(255,255,255,0.16);
    background: transparent;
}

.shopx-benefit-card i {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 1.4rem;
    color: var(--clone-orange);
}

.shopx-benefit-card h4 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    margin-bottom: 16px;
    color: #fff;
}

.shopx-benefit-card p {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.7;
    color: var(--clone-copy);
}

.shopx-payment-hero {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 18% 50%, rgba(255,0,149,0.28), transparent 24%),
        radial-gradient(circle at 82% 50%, rgba(52,76,255,0.3), transparent 22%),
        linear-gradient(135deg, #0c0017 0%, #1d0031 48%, #02091f 100%);
}

.shopx-payment-overlay {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.55)),
        url('../img/online-shop/klecks-orange.svg') no-repeat left 10% bottom 12% / min(220px, 18vw) auto;
}

.shopx-payment-content h2 {
    color: var(--clone-orange);
}

.shopx-payment-content p {
    margin-top: 18px;
}

.shopx-payment-intro {
    padding: 126px 0;
    background: #050505;
}

.shopx-payment-grid,
.shopx-row,
.shopx-row--flash {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 42px;
    align-items: center;
}

.shopx-payment-copy h3,
.shopx-row-copy h3 {
    font-size: clamp(3rem, 5vw, 4.8rem);
    margin-bottom: 20px;
    color: var(--clone-orange);
}

.shopx-payment-brands {
    display: grid;
    gap: 28px;
    justify-items: center;
    padding: 0;
    border: 0;
    background: transparent;
}

.shopx-payment-brands img:first-child {
    max-width: 360px;
}

.shopx-payment-brands img:nth-child(2) {
    max-width: 250px;
}

.shopx-payment-brands img:last-child {
    max-width: 300px;
}

.shopx-payment-rows {
    padding: 72px 0 140px;
    background: #000;
}

.shopx-row {
    padding: 34px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.shopx-row:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.shopx-row--flash {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
}

.shopx-row-art img {
    display: block;
    max-width: min(100%, 360px);
    margin: 0 auto;
}

.shopx-row-art--globe img {
    max-width: min(100%, 400px);
}

.shopx-row-art--splat img {
    max-width: min(100%, 300px);
}

.shopx-cta {
    padding: 40px 0 70px;
    background: linear-gradient(180deg, #000 0%, #030303 100%);
}

.shopx-cta-shell {
    text-align: center;
}

.shopx-cta p {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    color: #fff;
}

.shopx-cta .grafik-btn {
    margin-top: 24px;
}

@media (max-width: 1100px) {
    .subpage-shell {
        width: calc(100% - 40px);
    }

    .social-live-intro-layout,
    .social-live-feature-layout,
    .legal-live-intro-layout,
    .legal-live-shield-layout,
    .shopx-payment-grid,
    .shopx-row,
    .shopx-row--flash {
        grid-template-columns: 1fr;
    }

    .shopx-link-grid,
    .shopx-benefit-grid,
    .legal-live-card-grid,
    .legal-live-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .social-live-community-card::after {
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 760px) {
    .subpage-shell {
        width: calc(100% - 32px);
    }

    .social-live-tape,
    .legal-live-tape,
    .social-live-page .ws-tape,
    .legal-live-page .ws-tape,
    .shop-page .ws-tape {
        height: 82px;
        background-size: 680px auto;
    }

    .social-live-hero-ribbon {
        width: 160px;
        height: 160px;
    }

    .shopx-link-grid,
    .shopx-benefit-grid,
    .legal-live-card-grid,
    .legal-live-stat-grid {
        grid-template-columns: 1fr;
    }

    .social-live-intro,
    .social-live-feature,
    .social-live-cta,
    .legal-live-intro,
    .legal-live-strip,
    .legal-live-paper,
    .legal-live-cards,
    .legal-live-stats,
    .legal-live-shield,
    .shopx-links,
    .shopx-intro,
    .shopx-payment-intro,
    .shopx-payment-rows,
    .shopx-cta {
        padding-left: 0;
        padding-right: 0;
    }

    .social-live-community-card,
    .legal-live-strip-copy,
    .shopx-copy-box,
    .shopx-benefit-card,
    .legal-live-card,
    .legal-live-stat,
    .shopx-payment-brands {
        padding: 24px 20px;
    }

    .social-live-cta-inner p,
    .shopx-cta p {
        line-height: 1;
    }

    .shopx-intro {
        background-position: right 18px top 32px;
        background-size: 130px auto;
    }
}
