/* Goldene Momente – Intelligentes Zuhause CSS */
/* Seitenbezogene Styles – modular ergänzt */

/* ===== HERO ===== */
.hero-sticky-wrapper {
    position: relative;
    height: 100vh;
    z-index: 1;
    background: #000;
}

.hero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100vh + 82px);
    min-height: 100vh;
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    /* Counteract .page-content padding-top: 82px from global.css */
    margin-top: -82px;
    padding: calc(82px + 3rem) 6% 0;
    overflow: hidden;
    z-index: 1;
}

/* --- Schwarzer Hintergrund für den linken Textbereich --- */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 43%;
    background: #000;
    z-index: 2;
    pointer-events: none;
}

/* --- Text-Bereich (links) --- */
.hero-content {
    position: relative;
    z-index: 3;
    width: 42%;
    max-width: 650px;
    margin-left: 5vw;
}

.hero-meta {
    font-size: 0.78rem;
    color: var(--gold);
    margin-bottom: 1.8rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 400;
}

.hero h1 {
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.2rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.3px;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* --- Hero Einblendung --- */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-meta,
.hero h1,
.hero-subtitle,
.hero-buttons {
    opacity: 0;
    animation: heroFadeUp 1.0s ease forwards;
}

.hero-meta {
    animation-delay: 0.1s;
}

.hero h1 {
    animation-delay: 0.3s;
}

.hero-subtitle {
    animation-delay: 0.6s;
}

.hero-buttons {
    animation-delay: 0.9s;
}

.btn-hero-outline {
    background: transparent;
    color: rgba(237, 181, 27, 0.85);
    padding: 0 2rem;
    height: 46px;
    line-height: 46px;
    border: 1.5px solid rgba(237, 181, 27, 0.45);
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.btn-hero-outline:hover {
    background: rgba(237, 181, 27, 0.1);
    border-color: rgba(237, 181, 27, 0.6);
    color: var(--gold);
    letter-spacing: 1.8px;
    transform: translateY(-3px);
}

/* --- Video-Bereich (rechts, absolut positioniert) --- */
.hero-media {
    position: absolute;
    top: 0;
    right: -8%;
    bottom: 0;
    width: 72%;
    height: auto;
    z-index: 1;
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Verlauf-Overlay für nahtlosen Übergang --- */
.hero-media::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 44%;
    background: linear-gradient(
        90deg,
        #000 0%,
        #000 18%,
        rgba(0,0,0,0.92) 30%,
        rgba(0,0,0,0.70) 50%,
        rgba(0,0,0,0.30) 75%,
        rgba(0,0,0,0) 100%
    );
    z-index: 2;
    pointer-events: none;
}

#alltag {
    margin-top: 100vh;
    position: relative;
    z-index: 5;
}

/* ===== TABLET ===== */
@media (min-width: 881px) and (max-width: 1180px) {
    .hero-content {
        width: 40%;
        margin-left: 3vw;
    }

    .hero-media {
        right: -36%;
        width: 98%;
    }

    .hero-media::before {
        width: 28%;
    }
}

/* ===== MOBIL ===== */
@media (max-width: 880px) {
    .hero-sticky-wrapper {
        height: auto;
    }

    .hero {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        padding: calc(82px + 2rem) 0 3rem;
        min-height: auto;
        flex-direction: column;
        align-items: center;
    }

    #alltag {
        margin-top: 0;
    }

    .hero::before {
        display: none;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
        align-items: center;
        display: contents;
    }

    .hero-meta,
    .hero h1,
    .hero-subtitle,
    .hero-buttons {
        padding-left: 6%;
        padding-right: 6%;
    }

    .hero-meta,
    .hero h1,
    .hero-subtitle {
        order: 1;
    }

    .hero h1 {
        text-align: center;
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .hero-subtitle {
        text-align: center;
        max-width: 100%;
        font-size: 1.05rem;
        margin-bottom: 0;
    }

    .hero-meta {
        margin-bottom: 1.4rem;
        letter-spacing: 2.5px;
    }

    .hero-media {
        position: relative;
        left: 0;
        right: auto;
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: 1 / 1;
        order: 2;
        margin-top: 2.5rem;
        overflow: hidden;
        transform: none;
    }

    .hero-media::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            to bottom,
            #000 0%,
            rgba(0,0,0,0.55) 6%,
            rgba(0,0,0,0) 15%,
            rgba(0,0,0,0) 85%,
            rgba(0,0,0,0.55) 94%,
            #000 100%
        );
        z-index: 2;
        pointer-events: none;
    }

    .hero-buttons {
        justify-content: center;
        order: 3;
        margin-top: 2.5rem;
    }
}/* ===== WARUM SMART HOME WICHTIG IST ===== */
.why-ki {
    background: #FFFFFF;
    padding: 5.5rem 6% 4rem;
    position: relative;
    z-index: 2;
}
.why-ki-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.why-ki-meta {
    font-size: 0.95rem;
    color: var(--gold-dark);
    letter-spacing: 5.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.6rem;
}
.why-ki h2 {
    font-size: clamp(1.8rem, 3.0vw, 2.5rem);
    color: var(--black);
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.why-ki p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 1.6rem;
    font-weight: 300;
}
.why-ki p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .why-ki { padding: 5rem 6% 4rem; }
    .why-ki h2 { font-size: clamp(1.6rem, 5vw, 1.9rem); }
    .why-ki p { font-size: 1rem; line-height: 1.75; }
    .why-ki-meta { letter-spacing: 3px; }
}

/* ===== NETZWERK LEISTUNG ===== */
.network-performance {
    background: #F5F3EF;
    padding: 5.5rem 6% 4rem;
    position: relative;
    z-index: 2;
}
.network-performance-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}
.network-performance-meta {
    font-size: 0.95rem;
    color: var(--gold-dark);
    letter-spacing: 5.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.6rem;
}
.network-performance h2 {
    font-size: clamp(1.8rem, 3.0vw, 2.5rem);
    color: var(--black);
    margin-bottom: 3.5rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.network-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.6rem;
    margin-top: 0;
    text-align: center;
}
.network-item {
    padding: 1.5rem 1rem;
    max-width: none;
    width: 100%;
    margin: 0 auto;
}
.network-icon {
    color: var(--gold-dark);
    margin-bottom: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.network-icon svg {
    stroke: var(--gold);
    width: 64px;
    height: 64px;
}
.network-item h3 {
    font-size: 1.15rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 0.9rem;
    letter-spacing: 0.2px;
    line-height: 1.25;
}
.network-item p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 768px) {
    .network-performance { padding: 4rem 6% 3rem; }
    .network-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .network-item {
        padding: 1rem 0.5rem;
        max-width: none;
        width: 100%;
    }
    .network-icon {
        margin-bottom: 1.4rem;
    }
    .network-icon svg {
        width: 56px;
        height: 56px;
    }
    .network-item h3 {
        font-size: 1.05rem;
        margin-bottom: 0.9rem;
    }
    .network-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .network-performance-meta { letter-spacing: 3px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .network-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .network-item {
        max-width: none;
        width: 100%;
    }
}

/* ===== PRIVATPERSONEN | UNTERNEHMEN ===== */
.target-group {
    background: #FAF9F7;
    padding: 4rem 6% 6rem;
    position: relative;
    z-index: 2;
}
.target-group-inner {
    max-width: 980px;
    margin: 0 auto;
}
.target-group-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.target-group-header .meta {
    font-size: 0.95rem;
    color: var(--gold-dark);
    letter-spacing: 5.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.4rem;
}
.target-group-header h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    color: var(--black);
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.3;
}
.target-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.target-card {
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex;
    flex-direction: column;
}
.target-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.target-card-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.02);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.target-card-image-privat {
    object-position: center 35%;
}
.target-card:hover .target-card-image {
    filter: saturate(0.95) contrast(1.05);
    transform: scale(1.03);
}
.target-card-content {
    padding: 2.5rem 2.5rem 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.target-card-label {
    font-size: 0.88rem;
    color: var(--gold-dark);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1.6rem;
}
.target-card h3 {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 1.6rem;
    letter-spacing: -0.2px;
    line-height: 1.3;
}
.target-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 0.6rem;
    font-weight: 300;
}
.target-card-topics {
    list-style: none;
    margin: 1rem 0 1.8rem;
    padding: 0;
}
.target-card-topics li {
    font-size: 0.88rem;
    color: rgba(0,0,0,0.6);
    padding: 0.35rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-weight: 300;
    line-height: 1.5;
}
.target-card-topics li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0.5;
}
.target-card .btn-target {
    background: rgba(237, 181, 27, 0.03);
    color: var(--gold-dark);
    padding: 0 2rem;
    height: 44px;
    line-height: 44px;
    border: 1.5px solid rgba(237, 181, 27, 0.42);
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-top: auto;
    align-self: center;
}
.target-card .btn-target:hover {
    background: rgba(237, 181, 27, 0.1);
    border-color: rgba(237, 181, 27, 0.65);
    color: var(--gold-dark);
    letter-spacing: 1.7px;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .target-cards { grid-template-columns: 1fr; gap: 2rem; }
    .target-card-image { height: 200px; }
    .target-card-content { padding: 2rem 1.8rem 1.8rem; }
    .target-group { padding: 4rem 6% 4rem; }
    .target-group-header { margin-bottom: 2.5rem; }
}

/* ===== PAKETE ===== */
.packages {
    background: var(--white);
    padding: 6rem 6% 0;
    position: relative;
    z-index: 2;
}
.packages-inner {
    max-width: 1320px;
    margin: 0 auto;
}
.packages-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.8rem;
}
.packages-header .meta {
    font-size: 1.0rem;
    color: var(--gold-dark);
    letter-spacing: 5.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.4rem;
}
.packages-header h2 {
    font-size: clamp(1.75rem, 2.8vw, 2.3rem);
    color: var(--black);
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}
.packages-header p {
    font-size: 1.02rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.75;
    font-weight: 300;
}
.packages-group {
    margin-bottom: 6.5rem;
}
.packages-group:last-of-type {
    margin-bottom: 0;
}
.packages-group-label {
    font-size: 0.92rem;
    color: var(--gold-dark);
    letter-spacing: 5.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 3.2rem;
    text-align: center;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
}
.price-label {
    font-size: 0.78rem;
    color: rgba(0,0,0,0.6);
    font-weight: 300;
}
.price-value {
    font-size: 1.15rem;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 0.3px;
    font-family: 'Playfair Display', serif;
}
.price-note {
    font-size: 0.7rem;
    color: rgba(0,0,0,0.6);
    font-weight: 300;
    margin-bottom: 1.2rem;
    margin-top: 0;
    text-align: center;
    letter-spacing: 0.5px;
}
.package-footer {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 0.8rem;
    text-align: center;
}
.package-footer .price {
    font-size: 2.4rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 1.3px;
    line-height: 1.05;
    font-family: 'Playfair Display', serif;
}
.price-meta {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.6);
    font-weight: 300;
    margin-bottom: 0.4rem;
    letter-spacing: 1px;
    text-align: center;
}
.price-incl {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.6);
    font-weight: 300;
    margin-left: 0.3rem;
}
.price-duration {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 300;
    margin: 0;
}
.price-individual {
    font-size: 1.1rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.price-evolution {
    font-size: 1.3rem;
    color: var(--gold-dark);
    font-weight: 600;
    font-style: normal;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.8px;
}
.price-note-evolution {
    color: rgba(0,0,0,0.6);
    font-style: normal;
}
.package-card-evolution {
    background: #F8F6F2;
    border-left: 4px solid rgba(237, 181, 27, 0.55);
}
.package-card-evolution:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-left: 4px solid var(--gold);
}
.package-card-evolution h3 {
    color: var(--black);
}
.package-card-evolution .desc {
    color: var(--gray);
}
.package-card-evolution ul li {
    color: rgba(0,0,0,0.6);
}
.btn-package-evolution {
    border-color: rgba(237, 181, 27, 0.5);
    color: var(--gold-dark);
}
.btn-package-evolution:hover {
    border-color: rgba(237, 181, 27, 0.75);
    background: rgba(237, 181, 27, 0.1);
    color: var(--gold-dark);
}

.package-card {
    background: #F8F6F2;
    border-left: 4px solid var(--gold);
    padding: 2.4rem 2.4rem 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-left: 4px solid var(--gold);
}

.package-card.featured {
    border-left: 4px solid var(--gold);
    background: #F8F6F2;
}
.package-card.featured:hover {
    border-left: 4px solid var(--gold);
}

.package-card h3 {
    font-size: 1.35rem;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 1.2rem;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.gm-logo-inline {
    width: 56px;
    height: 56px;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.85;
}
.package-card .price {
    font-size: 1.05rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 1.6rem;
    letter-spacing: 0.3px;
}
.packages-grid .package-card .price {
    margin-bottom: 0.3rem;
}
.package-card .desc {
    font-size: 1.0rem;
    color: rgba(0,0,0,0.62);
    line-height: 1.65;
    margin-bottom: 0.9rem;
    font-weight: 300;
}
.package-card ul {
    list-style: none;
    margin: 0 0 0.8rem;
    padding: 0;
    flex-grow: 1;
}
.package-card ul li {
    font-size: 0.95rem;
    color: rgba(0,0,0,0.6);
    padding: 0.35rem 0;
    padding-left: 1.1rem;
    position: relative;
    font-weight: 300;
    line-height: 1.5;
}
.package-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0.5;
}
.package-card .btn-package {
    background: transparent;
    color: var(--black);
    padding: 0 1.6rem;
    height: 46px;
    line-height: 46px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.88rem;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 0.5rem;
    align-self: center;
    white-space: nowrap;
}
.package-card .btn-package:hover {
    border-color: rgba(237, 181, 27, 0.5);
    background: rgba(237, 181, 27, 0.06);
    color: rgba(237, 181, 27, 0.9);
    letter-spacing: 1.1px;
    white-space: nowrap;
}



@media (max-width: 1024px) and (min-width: 769px) {
    .packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 860px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .packages-header h2 { font-size: clamp(1.6rem, 5vw, 1.9rem); }
    .packages-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .package-card { padding: 2rem 1.6rem 1.6rem; background: #F8F6F2; }
}

/* ===== STATEMENT ===== */
.statement {
    background: var(--black);
    padding: 6rem 6%;
    position: relative;
    z-index: 2;
    text-align: center;
}
.statement-inner {
    max-width: 780px;
    margin: 0 auto;
}
.statement-meta {
    font-size: 1.0rem;
    color: var(--gold);
    letter-spacing: 5.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.5rem;
}
.statement blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    color: var(--white);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.3px;
    margin: 0;
    padding: 0;
    border: none;
}
.statement blockquote .phrase-highlight {
    font-style: italic;
}

@media (max-width: 768px) {
    .statement { padding: 4.5rem 6%; }
    .statement blockquote { font-size: clamp(1.4rem, 5vw, 1.7rem); line-height: 1.55; }
    .statement-meta { margin-bottom: 1.8rem; }
}

/* ===== WIE EINE BERATUNG ABLÄUFT ===== */
.process {
    background: var(--white);
    padding: 5.5rem 6% 3.5rem;
    position: relative;
    z-index: 2;
}
.process-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.process-meta {
    font-size: 0.95rem;
    color: var(--gold-dark);
    letter-spacing: 5.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.6rem;
}
.process h2 {
    font-size: clamp(2.0rem, 3.2vw, 2.6rem);
    color: var(--black);
    font-weight: 500;
    margin-bottom: 1.6rem;
    letter-spacing: -0.3px;
    line-height: 1.25;
}
.process-intro {
    font-size: 1.02rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.75;
    max-width: 650px;
    margin: 0 auto 3.8rem;
    font-weight: 300;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.4rem;
    text-align: left;
}
.process-step {
    padding: 1.8rem 1.3rem 1.6rem;
    border-top: 1px solid rgba(237, 181, 27, 0.22);
    transition: border-color 0.4s ease, transform 0.4s ease;
}
.process-step:hover {
    border-top-color: var(--gold);
    transform: translateY(-2px);
}
.process-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold-dark);
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1.1rem;
}
.process-step h3 {
    font-size: 1.15rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 0.9rem;
    letter-spacing: -0.2px;
    line-height: 1.3;
}
.process-step p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .process-steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .process { padding: 4rem 6% 3.5rem; }
    .process-intro { margin-bottom: 2.5rem; font-size: 0.98rem; }
    .process-steps { grid-template-columns: 1fr; gap: 0.9rem; }
    .process-step { padding: 1.3rem 0.8rem 1.2rem; text-align: center; }
    .process-step h3 { text-align: center; }
}




/* ===== BELIEBT BADGE ===== */
.badge-beliebt {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    width: 80px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .badge-beliebt {
        width: 64px;
        top: 0.8rem;
        right: 0.8rem;
    }
}
