/* ============================================ */
/* ZIELGRUPPEN TEMPLATE CSS                     */
/* Modern, conversion-optimized landing pages   */
/* ============================================ */

/* ---- HERO SECTION ---- */
.zg-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0e14;
}

.zg-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.zg-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
}

.zg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 20, 0.95) 0%,
        rgba(10, 14, 20, 0.7) 40%,
        rgba(0, 212, 255, 0.08) 100%
    );
    z-index: 1;
}

.zg-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 14, 20, 1) 100%);
    z-index: 2;
    pointer-events: none;
}

.zg-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zg-hero-text {
    max-width: 600px;
}

.zg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 28px;
    background: rgba(0, 212, 255, 0.06);
}

.zg-hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.zg-hero-title .accent {
    color: #00d4ff;
    font-weight: 400;
}

.zg-hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.zg-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.zg-stat {
    text-align: left;
}

.zg-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #00d4ff;
    line-height: 1;
}

.zg-stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.zg-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.zg-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.zg-hero-illustration {
    position: relative;
    width: 100%;
    max-width: 420px;
    overflow: visible;
}

.zg-hero-illustration > .zg-seal-container > .zg-seal-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.15));
}

.zg-floating-badge svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
}

/* ---- BUTTONS ---- */
.btn-zg-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #00d4ff;
    color: #0a0e14;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #00d4ff;
}

.btn-zg-primary:hover {
    background: transparent;
    color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.btn-zg-primary svg {
    width: 18px;
    height: 18px;
}

.btn-zg-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-zg-secondary:hover {
    border-color: #00d4ff;
    color: #00d4ff;
    transform: translateY(-2px);
}

/* ---- PROBLEM SECTION ---- */
.zg-problem {
    padding: 120px 24px;
    background: #0a0e14;
    position: relative;
}

.zg-problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.3));
}

.zg-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.zg-section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00d4ff;
    margin-bottom: 16px;
}

.zg-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
}

.zg-section-title .accent {
    color: #00d4ff;
    font-weight: 400;
}

.zg-section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.zg-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.zg-problem-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.zg-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.zg-problem-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
    background: rgba(0, 212, 255, 0.03);
}

.zg-problem-card:hover::before {
    opacity: 1;
}

.zg-problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.08);
    margin-bottom: 24px;
    color: #00d4ff;
}

.zg-problem-icon svg {
    width: 28px;
    height: 28px;
}

.zg-problem-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.zg-problem-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- USE CASES SECTION ---- */
.zg-usecases {
    padding: 120px 24px;
    background: linear-gradient(180deg, #0a0e14 0%, #0d1117 100%);
}

.zg-usecase {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zg-usecase:last-child {
    margin-bottom: 0;
}

.zg-usecase.reverse {
    direction: rtl;
}

.zg-usecase.reverse > * {
    direction: ltr;
}

.zg-usecase-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.zg-usecase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.zg-usecase-image:hover img {
    transform: scale(1.05);
}

.zg-usecase-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    pointer-events: none;
}

.zg-usecase-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.zg-usecase-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.zg-usecase-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.zg-usecase-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.zg-usecase-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
}

.zg-usecase-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00d4ff;
    flex-shrink: 0;
}

/* ---- HARDWARE SECTION ---- */
.zg-hardware {
    padding: 120px 24px;
    background: #0a0e14;
    position: relative;
    overflow: hidden;
}

.zg-hardware::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.zg-hardware-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.zg-hardware-image {
    position: relative;
    text-align: center;
}

.zg-hardware-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    transition: transform 0.6s ease;
}

.zg-hardware-image:hover img {
    transform: scale(1.03) translateY(-8px);
}

.zg-hardware-features {
    display: grid;
    gap: 24px;
}

.zg-hw-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.zg-hw-feature:hover {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.03);
    transform: translateX(8px);
}

.zg-hw-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.08);
    color: #00d4ff;
    flex-shrink: 0;
}

.zg-hw-icon svg {
    width: 24px;
    height: 24px;
}

.zg-hw-feature h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.zg-hw-feature p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- APP SECTION ---- */
.zg-app {
    padding: 120px 24px;
    background: linear-gradient(180deg, #0d1117 0%, #0a0e14 100%);
    position: relative;
}

.zg-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.zg-app-mockup {
    position: relative;
    text-align: center;
}

.zg-app-mockup img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

.zg-app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.zg-app-feature {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.zg-app-feature:hover {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.03);
    transform: translateY(-4px);
}

.zg-app-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.08);
    color: #00d4ff;
    margin-bottom: 12px;
}

.zg-app-feature-icon svg {
    width: 20px;
    height: 20px;
}

.zg-app-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.zg-app-feature p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- TECHNOLOGY BADGES ---- */
.zg-tech-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 60px 24px;
    background: rgba(0, 212, 255, 0.02);
    border-top: 1px solid rgba(0, 212, 255, 0.08);
    border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}

.zg-tech-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.zg-tech-badge svg {
    width: 20px;
    height: 20px;
    color: #00d4ff;
}

/* ---- TESTIMONIALS ---- */
.zg-testimonials {
    padding: 120px 24px;
    background: #0a0e14;
}

.zg-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.zg-testimonial-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
}

.zg-testimonial-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
}

.zg-testimonial-stars {
    color: #00d4ff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.zg-testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(0, 212, 255, 0.3);
}

.zg-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zg-testimonial-author strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}

.zg-testimonial-author span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ---- PRICING SECTION ---- */
.zg-pricing {
    padding: 120px 24px;
    background: linear-gradient(180deg, #0a0e14 0%, #0d1117 100%);
}

.zg-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.zg-price-card {
    padding: 48px 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.zg-price-card.featured {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.04);
}

.zg-price-card.featured::before {
    content: 'Empfohlen';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: #00d4ff;
    color: #0a0e14;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.zg-price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.3);
}

.zg-price-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00d4ff;
    margin-bottom: 8px;
}

.zg-price-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.zg-price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.zg-price-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.zg-price-period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.zg-price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    text-align: left;
}

.zg-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.zg-price-features li::before {
    content: '✓';
    color: #00d4ff;
    font-weight: 700;
    flex-shrink: 0;
}

.zg-price-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
}

/* ---- FAQ SECTION ---- */
.zg-faq {
    padding: 120px 24px;
    background: #0a0e14;
}

.zg-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.zg-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.zg-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
    font-family: inherit;
}

.zg-faq-question:hover {
    color: #00d4ff;
}

.zg-faq-question svg {
    width: 20px;
    height: 20px;
    color: #00d4ff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.zg-faq-item.active .zg-faq-question svg {
    transform: rotate(45deg);
}

.zg-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.zg-faq-item.active .zg-faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.zg-faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- CTA SECTION ---- */
.zg-cta {
    padding: 120px 24px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(10, 14, 20, 1) 50%, rgba(0, 212, 255, 0.05) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zg-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.zg-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.zg-cta h2 .accent {
    color: #00d4ff;
    font-weight: 400;
}

.zg-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.zg-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.zg-cta-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 24px;
}

/* ---- CONTACT SECTION ---- */
.zg-contact {
    padding: 120px 24px;
    background: #0a0e14;
}

.zg-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.zg-contact-info h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.zg-contact-info h2 .accent {
    color: #00d4ff;
    font-weight: 400;
}

.zg-contact-info > p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.zg-contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.zg-contact-detail svg {
    width: 20px;
    height: 20px;
    color: #00d4ff;
    flex-shrink: 0;
}

.zg-contact-detail a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.zg-contact-detail a:hover {
    color: #00d4ff;
}

.zg-contact-detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .zg-hero-content {
        grid-template-columns: 1fr;
        padding-top: 120px;
    }
    .zg-hero-visual {
        display: none;
    }
    .zg-problem-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    .zg-usecase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .zg-usecase.reverse {
        direction: ltr;
    }
    .zg-hardware-grid {
        grid-template-columns: 1fr;
    }
    .zg-app-grid {
        grid-template-columns: 1fr;
    }
    .zg-testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    .zg-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .zg-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zg-hero-stats {
        gap: 24px;
    }
    .zg-usecase-features {
        grid-template-columns: 1fr;
    }
    .zg-app-features {
        grid-template-columns: 1fr;
    }
    .zg-hero-cta {
        flex-direction: column;
    }
    .zg-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ---- MADE IN AUSTRIA SEAL & FLOATING BADGES ---- */
.zg-seal-container {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    overflow: visible;
}

.zg-seal-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.15));
}

.zg-floating-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 212, 255, 0.08);
    animation: floatBadge 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.zg-floating-badge:hover {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.12);
    transform: scale(1.05);
}

.zg-badge-1 {
    top: -5%;
    right: -25%;
    animation-delay: 0s;
}

.zg-badge-2 {
    bottom: 25%;
    left: -50%;
    animation-delay: -2s;
}

.zg-badge-3 {
    bottom: -5%;
    right: -35%;
    animation-delay: -4s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* ---- SYMBOLFOTO CAPTION ---- */
.zg-app-mockup-caption {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 12px;
    letter-spacing: 0.5px;
    font-style: italic;
}

@media (max-width: 1200px) {
    .zg-badge-1 { right: -20%; }
    .zg-badge-2 { left: -25%; }
    .zg-badge-3 { right: -15%; }
}

@media (max-width: 1024px) {
    .zg-floating-badge {
        font-size: 0.7rem;
        padding: 8px 14px;
    }
    .zg-badge-1 { right: -10%; top: -8%; }
    .zg-badge-2 { left: -10%; }
    .zg-badge-3 { right: -5%; }
}

@media (max-width: 768px) {
    .zg-seal-container { max-width: 260px; }
    .zg-badge-1 { right: -5%; top: -10%; }
    .zg-badge-2 { left: -5%; bottom: 20%; }
    .zg-badge-3 { right: -5%; bottom: -8%; }
}
