/* ============================================================
   PUBLISHER SCREEN - mallorcazeitung.news
   PROFESSIONELLES, HOCHWERTIGES DESIGN - Vision-Style
   ============================================================ */

/* ============================================================
   HERO SECTION - Premium Look
   ============================================================ */

#publisher-hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 30%, var(--color-bg-primary) 70%, var(--color-bg-secondary) 100%);
    padding: 120px 40px 100px;
}

.publisher-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, var(--color-accent-blue-2) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, var(--color-accent-yellow-2) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, var(--color-accent-blue-08) 0%, transparent 50%);
    z-index: 1;
    animation: particles-float 25s ease-in-out infinite;
}

@keyframes particles-float {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%;
        opacity: 1;
    }
    50% { 
        background-position: 100% 100%, 0% 0%, 50% 50%;
        opacity: 0.8;
    }
}

.publisher-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg-secondary) 100%);
    opacity: 0.4;
    z-index: 2;
}

#publisher-hero-container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

#publisher-hero-content {
    text-align: center;
    color: var(--color-text-primary);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

#publisher-hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
    background-size: 200% 200%;
    color: var(--color-bg-primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 25px;
    margin-bottom: 32px;
    box-shadow: 0 6px 20px var(--color-accent-blue-3),
                0 0 40px var(--color-accent-yellow-2);
    animation: badge-shimmer 5s ease-in-out infinite;
    position: relative;
    border: 2px solid var(--color-accent-yellow-2);
}

@keyframes badge-shimmer {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 6px 20px var(--color-accent-blue-3),
                    0 0 40px var(--color-accent-yellow-2);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 8px 25px var(--color-accent-blue-3),
                    0 0 50px var(--color-accent-yellow-2);
    }
}

/* ============================================================
   HEADLINES - Vision-Style Premium Effekte
   ============================================================ */

/* Hero H1 - Gradient-Effekt wie Vision CTA */
#publisher-hero-content .widget-headline-h1 {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 50%, var(--color-accent-blue) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    animation: publisher-title-shimmer 4s ease-in-out infinite;
}

@keyframes publisher-title-shimmer {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
}

/* Section H2 - Hochwertiger Gradient-Effekt */
#publisher-products-section .widget-headline-h2,
#publisher-implementation-section .widget-headline-h2,
#publisher-exit-section .widget-headline-h2,
#publisher-founders-section .widget-headline-h2,
#publisher-contact-form .widget-headline-h2 {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    position: relative;
    animation: publisher-section-title-shimmer 5s ease-in-out infinite;
    line-height: 1.3;
}

@keyframes publisher-section-title-shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Product/Implementation H3 - Vision-Style mit Gradient */
.publisher-product-title,
.publisher-implementation-title {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 22px;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.publisher-product-item:hover .publisher-product-title,
.publisher-implementation-item:hover .publisher-implementation-title {
    background-position: 100% 50%;
    filter: brightness(1.15);
}

#publisher-hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    margin: 35px 0 45px;
    color: var(--color-text-primary);
    font-weight: 400;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.publisher-hero-cta {
    display: inline-block;
    margin-top: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.publisher-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--color-accent-blue-2);
}

/* ============================================================
   PRODUCTS SECTION - Vision-Style Grid
   ============================================================ */

#publisher-products-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 50%, var(--color-bg-primary) 100%);
}

/* Section Header - Verbesserte Formatierung */
#publisher-products-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#publisher-products-section .section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-accent-blue-1) 0%, var(--color-accent-yellow-1) 100%);
    color: var(--color-accent-blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px var(--color-accent-blue-2);
    transition: all 0.3s ease;
}

#publisher-products-section .section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-accent-blue-3);
}

#publisher-products-section .section-subtitle {
    font-size: 19px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-top: 24px;
}

#publisher-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 1300px;
    margin: 60px auto 0;
}

.publisher-product-item {
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    padding: 45px 35px;
    border-radius: 16px;
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06),
                0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.publisher-product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-accent-blue-08), transparent);
    transition: left 0.7s ease;
}

.publisher-product-item:hover::before {
    left: 100%;
}

.publisher-product-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.publisher-product-item:hover::after {
    opacity: 1;
}

.publisher-product-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px var(--color-accent-blue-2),
                0 8px 20px var(--color-accent-blue-1),
                0 0 60px var(--color-accent-blue-1);
    border-color: var(--color-accent-blue);
}

/* Publisher-product-title wird jetzt oben in HEADLINES-Section definiert */

.publisher-product-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: var(--color-text-primary);
    position: relative;
    z-index: 2;
}

.publisher-product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.publisher-product-feature {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--color-text-primary);
    line-height: 1.6;
}

.publisher-product-feature:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent-blue);
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.publisher-product-item:hover .publisher-product-feature:before {
    transform: scale(1.2);
    color: var(--color-accent-yellow);
}

/* ============================================================
   IMPLEMENTATION SECTION - High-End Cards
   ============================================================ */

#publisher-implementation-section {
    padding: 100px 40px;
    background-color: var(--color-bg-primary);
}

/* Implementation Section Header - Verbesserte Formatierung */
#publisher-implementation-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#publisher-implementation-section .section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-accent-blue-1) 0%, var(--color-accent-yellow-1) 100%);
    color: var(--color-accent-blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px var(--color-accent-blue-2);
    transition: all 0.3s ease;
}

#publisher-implementation-section .section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-accent-blue-3);
}

#publisher-implementation-section .section-subtitle {
    font-size: 19px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-top: 24px;
}

#publisher-implementation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1300px;
    margin: 60px auto 0;
}

.publisher-implementation-item {
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    padding: 50px 45px;
    border-radius: 20px;
    border: 3px solid var(--color-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.publisher-implementation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
}

.publisher-implementation-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px var(--color-accent-blue-2);
    border-color: var(--color-accent-blue);
}

/* Publisher-implementation-title wird jetzt oben in HEADLINES-Section definiert */

.publisher-implementation-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-primary);
}

/* ============================================================
   EXIT SECTION - Premium Content Box
   ============================================================ */

#publisher-exit-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 50%, var(--color-bg-primary) 100%);
}

/* Exit Section Header - Verbesserte Formatierung */
#publisher-exit-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#publisher-exit-section .section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-accent-blue-1) 0%, var(--color-accent-yellow-1) 100%);
    color: var(--color-accent-blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px var(--color-accent-blue-2);
    transition: all 0.3s ease;
}

#publisher-exit-section .section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-accent-blue-3);
}

#publisher-exit-section .section-subtitle {
    font-size: 19px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-top: 24px;
}

.publisher-exit-content {
    max-width: 1100px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.publisher-exit-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
}

.publisher-exit-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px var(--color-accent-blue-2),
                0 0 80px var(--color-accent-blue-1);
    border-color: var(--color-accent-blue);
}

.publisher-exit-text {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 45px;
    color: var(--color-text-primary);
    font-weight: 400;
}

.publisher-exit-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.publisher-exit-feature {
    padding: 18px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-primary);
    transition: padding-left 0.3s ease;
}

.publisher-exit-feature:hover {
    padding-left: 40px;
}

.publisher-exit-feature:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-accent-blue);
    font-weight: 700;
    font-size: 22px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.publisher-exit-feature:hover:before {
    transform: translateX(5px);
    color: var(--color-accent-yellow);
}

/* ============================================================
   FOUNDERS SECTION - Gründer-Visualisierung
   ============================================================ */

#publisher-founders-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 50%, var(--color-bg-primary) 100%);
}

/* Founders Section Header */
#publisher-founders-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#publisher-founders-section .section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-accent-blue-1) 0%, var(--color-accent-yellow-1) 100%);
    color: var(--color-accent-blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px var(--color-accent-blue-2);
    transition: all 0.3s ease;
}

#publisher-founders-section .section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-accent-blue-3);
}

#publisher-founders-section .widget-headline-h2 {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    position: relative;
    animation: publisher-section-title-shimmer 5s ease-in-out infinite;
    line-height: 1.3;
}

/* Gründer Container mit echten Fotos */
#publisher-founders-container-inner.founders-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
}

#publisher-founder-card-1.founder-card,
#publisher-founder-card-2.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

#publisher-founder-card-1.founder-card:hover,
#publisher-founder-card-2.founder-card:hover {
    transform: translateY(-8px);
}

#publisher-founder-image-wrapper-1.founder-image-wrapper,
#publisher-founder-image-wrapper-2.founder-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
    box-shadow: 0 8px 30px var(--color-accent-blue-3);
    transition: all 0.3s ease;
}

#publisher-founder-card-1.founder-card:hover #publisher-founder-image-wrapper-1.founder-image-wrapper,
#publisher-founder-card-2.founder-card:hover #publisher-founder-image-wrapper-2.founder-image-wrapper {
    box-shadow: 0 12px 40px var(--color-accent-blue-3);
    transform: scale(1.05);
}

#publisher-founder-link-1.founder-link,
#publisher-founder-link-2.founder-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 50%;
    overflow: hidden;
}

#publisher-founder-link-1.founder-link:hover,
#publisher-founder-link-2.founder-link:hover {
    opacity: 0.9;
}

#publisher-founders-container-inner .founder-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid var(--color-bg-primary);
    display: block;
}

#publisher-founders-container-inner .founder-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-accent-blue);
    margin: 0;
}

#publisher-founders-container-inner .founder-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 12px 0 0 0;
    text-align: center;
    max-width: 280px;
}

#publisher-founders-container-inner .founder-role {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-accent-yellow);
    margin: 0;
    text-align: center;
}

/* Verbindung zwischen Gründern */
#publisher-founders-connection.founders-connection {
    position: relative;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
    opacity: 0.5;
    flex-shrink: 0;
}

#publisher-founders-connection .connection-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--color-accent-yellow);
    border-radius: 50%;
    animation: pulse-animation 2.5s ease-in-out infinite;
}

#publisher-founders-connection .connection-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--color-accent-blue);
    border-radius: 50%;
}

@keyframes pulse-animation {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

/* ============================================================
   CONTACT SECTION - Premium Form
   ============================================================ */

#publisher-contact-form {
    padding: 100px 40px;
    background-color: var(--color-bg-primary);
}

.publisher-contact-form {
    max-width: 800px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--color-border);
    transition: all 0.4s ease;
}

.publisher-contact-form:hover {
    box-shadow: 0 15px 50px var(--color-accent-blue-2);
    border-color: var(--color-accent-blue);
}

.publisher-form-field {
    margin-bottom: 35px;
}

.publisher-form-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-primary);
    letter-spacing: 0.3px;
}

.publisher-form-required {
    color: var(--color-error);
    margin-left: 4px;
    font-weight: 700;
}

.publisher-form-input,
.publisher-form-textarea {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    font-family: var(--font-family-base);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
}

.publisher-form-input:focus,
.publisher-form-textarea:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 0 4px var(--color-accent-blue-08),
                0 4px 12px var(--color-accent-blue-2);
    transform: translateY(-2px);
}

.publisher-form-textarea {
    min-height: 160px;
    resize: vertical;
}

.publisher-form-error {
    display: block;
    color: var(--color-error);
    font-size: 14px;
    margin-top: 8px;
    font-weight: 600;
}

.publisher-form-submit {
    text-align: center;
    margin-top: 45px;
}

.publisher-form-button {
    padding: 18px 60px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.publisher-form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--color-accent-blue-2);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 1024px) {
    #publisher-implementation-grid {
        grid-template-columns: 1fr;
    }
    
    .publisher-implementation-item {
        padding: 45px 40px;
    }
}

@media (max-width: 768px) {
    #publisher-hero-section {
        min-height: 600px;
        padding: 80px 20px 60px;
    }
    
    #publisher-hero-subtitle {
        font-size: 18px;
    }
    
    #publisher-products-grid,
    #publisher-implementation-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .publisher-product-item,
    .publisher-implementation-item {
        padding: 35px 28px;
    }
    
    .publisher-product-title,
    .publisher-implementation-title {
        font-size: 22px;
    }
    
    #publisher-hero-content .widget-headline-h1 {
        font-size: 42px;
    }
    
    #publisher-products-section .widget-headline-h2,
    #publisher-implementation-section .widget-headline-h2,
    #publisher-exit-section .widget-headline-h2,
    #publisher-founders-section .widget-headline-h2,
    #publisher-contact-form .widget-headline-h2 {
        font-size: 32px;
    }
    
    #publisher-products-section .section-subtitle {
        font-size: 17px;
        line-height: 1.7;
    }
    
    #publisher-products-section .section-header {
        margin-bottom: 60px;
    }
    
    .publisher-exit-content,
    .publisher-contact-form {
        padding: 40px 30px;
    }
    
    #publisher-founders-container-inner.founders-container {
        flex-direction: column;
        gap: 40px;
    }
    
    #publisher-founders-connection.founders-connection {
        width: 4px;
        height: 80px;
        background: linear-gradient(180deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
    }
    
    #publisher-founders-container-inner .founder-description {
        font-size: 13.5px;
        line-height: 1.65;
        margin: 12px 20px 0 20px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    #publisher-founder-image-wrapper-1.founder-image-wrapper,
    #publisher-founder-image-wrapper-2.founder-image-wrapper {
        width: 180px;
        height: 180px;
    }
    
    #publisher-founders-container-inner .founder-name {
        font-size: 18px;
    }
    
    #publisher-founders-container-inner .founder-role {
        font-size: 14px;
    }
    
    #publisher-founders-container-inner .founder-description {
        font-size: 13px;
        line-height: 1.7;
        margin: 10px 15px 0 15px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    #publisher-products-section,
    #publisher-implementation-section,
    #publisher-exit-section,
    #publisher-founders-section,
    #publisher-contact-form {
        padding: 80px 20px;
    }
    
    #publisher-implementation-section .section-subtitle {
        font-size: 17px;
        line-height: 1.7;
    }
    
    #publisher-implementation-section .section-header {
        margin-bottom: 60px;
    }
    
    #publisher-exit-section .section-subtitle {
        font-size: 17px;
        line-height: 1.7;
    }
    
    #publisher-exit-section .section-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    #publisher-hero-section {
        min-height: 500px;
        padding: 60px 15px 50px;
    }
    
    #publisher-hero-badge {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    #publisher-hero-content .widget-headline-h1 {
        font-size: 32px;
    }
    
    #publisher-products-section .widget-headline-h2,
    #publisher-implementation-section .widget-headline-h2,
    #publisher-exit-section .widget-headline-h2,
    #publisher-founders-section .widget-headline-h2,
    #publisher-contact-form .widget-headline-h2 {
        font-size: 28px;
    }
    
    #publisher-implementation-section .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    #publisher-implementation-section .section-header {
        margin-bottom: 50px;
        padding: 0 15px;
    }
    
    #publisher-implementation-section .section-badge {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    #publisher-exit-section .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    #publisher-exit-section .section-header {
        margin-bottom: 50px;
        padding: 0 15px;
    }
    
    #publisher-exit-section .section-badge {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    #publisher-products-section .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    #publisher-products-section .section-header {
        margin-bottom: 50px;
        padding: 0 15px;
    }
    
    #publisher-products-section .section-badge {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .publisher-product-title,
    .publisher-implementation-title {
        font-size: 20px;
    }
    
    .publisher-product-item,
    .publisher-implementation-item {
        padding: 30px 20px;
    }
    
    .publisher-exit-content,
    .publisher-contact-form {
        padding: 35px 25px;
    }
}

/* ============================================================
   IPHONE-SPEZIFISCHE OPTIMIERUNGEN
   ============================================================ */

/* iPhone SE, iPhone 12/13/14 Mini (375px) */
@media (max-width: 375px) {
    #publisher-founders-section {
        padding: 60px 15px;
    }
    
    #publisher-founders-container-inner.founders-container {
        gap: 35px;
    }
    
    #publisher-founder-image-wrapper-1.founder-image-wrapper,
    #publisher-founder-image-wrapper-2.founder-image-wrapper {
        width: 160px;
        height: 160px;
    }
    
    #publisher-founders-container-inner .founder-name {
        font-size: 17px;
    }
    
    #publisher-founders-container-inner .founder-role {
        font-size: 13px;
    }
    
    #publisher-founders-container-inner .founder-description {
        font-size: 12.5px;
        line-height: 1.75;
        margin: 10px 10px 0 10px;
        padding: 0 8px;
    }
    
    #publisher-hero-section {
        padding: 60px 15px 50px;
    }
    
    #publisher-hero-subtitle {
        font-size: 16px;
        line-height: 1.7;
    }
    
    #publisher-products-section,
    #publisher-implementation-section,
    #publisher-exit-section,
    #publisher-founders-section,
    #publisher-contact-form {
        padding: 60px 15px;
    }
}

/* iPhone 12/13/14/15 (390px) */
@media (min-width: 376px) and (max-width: 390px) {
    #publisher-founders-container-inner .founder-description {
        font-size: 12.8px;
        line-height: 1.72;
        margin: 10px 12px 0 12px;
        padding: 0 10px;
    }
    
    #publisher-founder-image-wrapper-1.founder-image-wrapper,
    #publisher-founder-image-wrapper-2.founder-image-wrapper {
        width: 170px;
        height: 170px;
    }
}

/* iPhone 14 Pro Max, iPhone 15 Pro Max (430px) */
@media (min-width: 391px) and (max-width: 430px) {
    #publisher-founders-container-inner .founder-description {
        font-size: 13px;
        line-height: 1.7;
        margin: 12px 15px 0 15px;
        padding: 0 12px;
    }
    
    #publisher-founder-image-wrapper-1.founder-image-wrapper,
    #publisher-founder-image-wrapper-2.founder-image-wrapper {
        width: 175px;
        height: 175px;
    }
}

/* Safari-spezifische Optimierungen für iPhone */
@supports (-webkit-touch-callout: none) {
    #publisher-founders-container-inner .founder-description {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    #publisher-founder-link-1.founder-link,
    #publisher-founder-link-2.founder-link {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }
    
    #publisher-founder-card-1.founder-card,
    #publisher-founder-card-2.founder-card {
        -webkit-tap-highlight-color: transparent;
    }
}

