/* ===== WEBDESIGN PAGE STYLES ===== */

.webdesign-hero {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 400px;
    padding: 160px 20px 60px;
}

.webdesign-container {
    width: 100%;
    max-width: 800px;
}

.webdesign-content {
    text-align: center;
}

.webdesign-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: 1.5px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.webdesign-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.webdesign-title .highlight {
    color: #ecc6b5;
}

.webdesign-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
    letter-spacing: 0.5px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.webdesign-subtitle.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PAGE BUILDER SHOWCASE ===== */
.page-builder-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-builder-showcase.animated {
    opacity: 1;
    transform: translateY(0);
}

.showcase-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
    width: auto;
}

.browser-mockup {
    width: 100%;
    max-width: 320px;
    flex-shrink: 0;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 16px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(145deg, #3a3a3a 0%, #2a2a2a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.browser-dots .dot.red {
    background: linear-gradient(145deg, #ff5f57 0%, #ff3b30 100%);
    box-shadow: 0 2px 4px rgba(255, 59, 48, 0.3);
}

.browser-dots .dot.yellow {
    background: linear-gradient(145deg, #ffbd2e 0%, #ff9500 100%);
    box-shadow: 0 2px 4px rgba(255, 149, 0, 0.3);
}

.browser-dots .dot.green {
    background: linear-gradient(145deg, #28ca42 0%, #30d158 100%);
    box-shadow: 0 2px 4px rgba(48, 209, 88, 0.3);
}

.browser-url {
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    text-align: center;
}

.browser-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    min-height: 160px;
}

.page-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.navigation-bar {
    height: 25px;
    background: linear-gradient(135deg, #d4a574 0%, #c49660 50%, #b8875a 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.nav-logo {
    width: 40px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    gap: 6px;
}

.nav-item {
    width: 20px;
    height: 8px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
}


.hero-section {
    height: 50px;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 50%, #00838f 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.hero-text {
    color: white;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.content-row {
    display: flex;
    gap: 16px;
    height: 40px;
}

.content-box {
    flex: 1;
    border-radius: 8px;
}

.left-box {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 50%, #2e7d32 100%);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.right-box {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 50%, #e65100 100%);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.footer-bar {
    height: 20px;
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 50%, #6a1b9a 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

/* ===== FEATURE HIGHLIGHTS ===== */
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.8s ease-out;
}

.feature-highlights.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 198, 181, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: featureSlideIn 0.6s ease-out forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes featureSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.feature-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(236, 198, 181, 0.2), rgba(212, 165, 116, 0.2));
    border: 1px solid rgba(236, 198, 181, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #ecc6b5;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.feature-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
    line-height: 1.2;
}
/* ===== PAGE BUILDER RESPONSIVE ===== */

/* Desktop */
@media (min-width: 1025px) {
    .page-builder-showcase {
        margin: 50px auto 0 auto;
        padding: 0 40px;
        max-width: 1400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .showcase-layout {
        gap: 120px;
        justify-content: center;
        align-items: center;
        width: auto;
        margin: 0 auto;
    }
    
    .browser-mockup {
        max-width: 400px;
        flex-shrink: 0;
    }
    
    .browser-header {
        padding: 20px 24px;
    }
    
    .browser-dots .dot {
        width: 14px;
        height: 14px;
    }
    
    .browser-url {
        font-size: 15px;
        padding: 10px 20px;
        min-width: 280px;
    }
    
    .browser-content {
        padding: 32px;
        gap: 20px;
        min-height: 190px;
    }
    
    .navigation-bar {
        height: 30px;
        padding: 0 10px;
    }
    
    .nav-logo {
        width: 50px;
        height: 15px;
    }
    
    .nav-item {
        width: 25px;
        height: 10px;
    }
    
    .hero-section {
        height: 60px;
    }
    
    .hero-text {
        font-size: 11px;
    }
    
    .content-row {
        height: 50px;
        gap: 20px;
    }
    
    .footer-bar {
        height: 25px;
    }
    
    .feature-highlights {
        gap: 28px;
    }
    
    .feature-item {
        padding: 24px 28px;
    }
    
    .feature-icon {
        font-size: 28px;
        width: 56px;
        height: 56px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-subtitle {
        font-size: 15px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 768px) {
    .page-builder-showcase {
        margin: 40px auto 0 auto;
        padding: 0 30px;
        max-width: 1000px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .showcase-layout {
        gap: 60px;
        justify-content: center;
        align-items: center;
        width: auto;
        margin: 0 auto;
    }
    
    .browser-mockup {
        max-width: 300px;
        flex-shrink: 0;
    }
    
    .browser-content {
        padding: 28px;
        min-height: 175px;
    }
    
    .hero-text {
        font-size: 10px;
    }
    
    .feature-highlights {
        gap: 20px;
    }
    
    .feature-item {
        padding: 18px 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .page-builder-showcase {
        margin: 30px auto 0 auto;
        padding: 0 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .showcase-layout {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .feature-highlights {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        align-items: center;
        padding: 0 10px;
    }
    
    .feature-item {
        flex: 1;
        min-width: 90px;
        max-width: 110px;
        padding: 16px 12px;
        flex-direction: column;
        text-align: left;
        gap: 8px;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .browser-mockup {
        max-width: 100%;
        order: 2;
        margin: 0 auto;
    }
    
    .browser-header {
        padding: 14px 16px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }
    
    .browser-dots {
        flex-shrink: 0;
    }
    
    .browser-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .browser-url {
        font-size: 13px;
        padding: 8px 12px;
        min-width: 160px;
        flex-grow: 1;
        margin-left: 12px;
    }
    
    .browser-content {
        padding: 20px;
        gap: 12px;
        min-height: 280px;
    }
    
    .navigation-bar {
        height: 40px;
        padding: 0 12px;
    }
    
    .nav-logo {
        width: 60px;
        height: 18px;
    }
    
    .nav-menu {
        gap: 8px;
    }
    
    .nav-item {
        width: 30px;
        height: 12px;
    }
    
    .hero-section {
        height: 80px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .content-row {
        height: 60px;
        gap: 12px;
    }
    
    .footer-bar {
        height: 32px;
        padding: 0 8px;
    }
    
    .feature-icon {
        font-size: 20px;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .feature-title {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.1;
    }
    
    .feature-subtitle {
        font-size: 11px;
        line-height: 1.2;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .page-builder-showcase {
        margin-top: 25px;
        padding: 0 10px;
    }
    
    .showcase-layout {
        gap: 32px;
    }
    
    .feature-highlights {
        gap: 12px;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .feature-item {
        min-width: 80px;
        max-width: 95px;
        padding: 12px 8px;
        gap: 6px;
    }
    
    .feature-icon {
        font-size: 18px;
        width: 36px;
        height: 36px;
    }
    
    .feature-title {
        font-size: 13px;
    }
    
    .feature-subtitle {
        font-size: 10px;
    }
    
    .browser-header {
        padding: 12px 14px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .browser-url {
        font-size: 12px;
        padding: 6px 10px;
        min-width: 140px;
        flex-grow: 1;
        margin-left: 10px;
    }
    
    .browser-content {
        padding: 16px;
        gap: 10px;
        min-height: 240px;
    }
    
    .navigation-bar {
        height: 36px;
        padding: 0 10px;
    }
    
    .nav-logo {
        width: 55px;
        height: 16px;
    }
    
    .nav-item {
        width: 28px;
        height: 11px;
    }
    
    .hero-section {
        height: 70px;
    }
    
    .hero-text {
        font-size: 14px;
    }
    
    .content-row {
        height: 50px;
        gap: 10px;
    }
    
    .footer-bar {
        height: 28px;
    }
}

/* ===== FEATURES SECTION STYLES ===== */
.webdesign-features-section {
    padding: 0px 20px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.webdesign-features-container {
    width: 100%;
    max-width: 1200px;
}

.webdesign-features-intro {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 60px;
}

.webdesign-features-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1.5px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.webdesign-features-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.webdesign-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.webdesign-feature-box {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 198, 181, 0.15);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

.webdesign-feature-box.animated {
    opacity: 1;
    transform: translateY(0);
}

.webdesign-feature-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(236, 198, 181, 0.25);
}

.webdesign-feature-icon {
    font-size: 42px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    margin-left: 0;
    margin-right: auto;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.webdesign-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.webdesign-feature-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px 0;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.webdesign-highlight {
    color: #ecc6b5;
    font-weight: 600;
}

.webdesign-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.webdesign-feature-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.webdesign-list-icon {
    margin-right: 10px;
    font-size: 16px;
    flex-shrink: 0;
}

/* ===== MOBILE DOTS INDICATOR ===== */
.webdesign-mobile-dots {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.webdesign-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: default;
    pointer-events: none;
    transition: all 0.3s ease;
}

.webdesign-dot.active {
    background-color: #ecc6b5;
    transform: scale(1.2);
}


/* ===== WEBDESIGN PROCESS SECTION STYLES ===== */
.webdesign-process-section {
    padding: 15px 20px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.webdesign-process-container {
    width: 100%;
    max-width: 1200px;
}

.webdesign-process-intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    margin-bottom: 60px;
}

.webdesign-process-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.webdesign-process-description {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.webdesign-process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.webdesign-process-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 198, 181, 0.15);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

.webdesign-process-step.animated {
    opacity: 1;
    transform: translateY(0);
}

.webdesign-process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(236, 198, 181, 0.25);
}

.webdesign-step-number {
    font-size: 32px;
    font-weight: 700;
    color: #ecc6b5;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border: 2px solid rgba(236, 198, 181, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.webdesign-step-content {
    flex-grow: 1;
}

.webdesign-step-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.webdesign-step-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* Desktop */
@media (min-width: 1025px) {
    .webdesign-process-section {
        padding: 15px 40px 100px;
    }
    
    .webdesign-process-container {
        max-width: 1400px;
    }
    
    .webdesign-process-intro {
        gap: 28px;
        margin-bottom: 80px;
    }
    
    .webdesign-process-title {
        font-size: 56px;
    }
    
    .webdesign-process-description {
        font-size: 20px;
    }
    
    .webdesign-process-steps {
        gap: 48px;
        max-width: 900px;
    }
    
    .webdesign-process-step {
        gap: 40px;
        padding: 40px;
    }
    
    .webdesign-step-number {
        font-size: 36px;
        width: 70px;
        height: 70px;
    }
    
    .webdesign-step-title {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    .webdesign-step-description {
        font-size: 17px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 768px) {
    .webdesign-process-section {
        padding: 10px 30px 80px;
    }
    
    .webdesign-process-intro {
        margin-bottom: 50px;
    }
    
    .webdesign-process-title {
        font-size: 44px;
    }
    
    .webdesign-process-description {
        font-size: 18px;
    }
    
    .webdesign-process-steps {
        gap: 32px;
    }
    
    .webdesign-process-step {
        gap: 24px;
        padding: 28px;
    }
    
    .webdesign-step-number {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .webdesign-step-title {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .webdesign-process-section {
        padding: 8px 15px 60px;
    }
    
    .webdesign-process-intro {
        gap: 20px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .webdesign-process-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .webdesign-process-description {
        font-size: 16px;
    }
    
    .webdesign-process-steps {
        gap: 24px;
    }
    
    .webdesign-process-step {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
        text-align: center;
        border-radius: 20px;
    }
    
    .webdesign-step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin: 0 auto;
    }
    
    .webdesign-step-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .webdesign-step-description {
        font-size: 15px;
    }
    
    /* Mobile: Hover-Effekte entfernen */
    .webdesign-process-step:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border-color: rgba(236, 198, 181, 0.15);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .webdesign-process-section {
        padding: 5px 10px 50px;
    }
    
    .webdesign-process-intro {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .webdesign-process-title {
        font-size: 32px;
    }
    
    .webdesign-process-description {
        font-size: 15px;
    }
    
    .webdesign-process-steps {
        gap: 20px;
    }
    
    .webdesign-process-step {
        padding: 20px 16px;
    }
    
    .webdesign-step-number {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .webdesign-step-title {
        font-size: 18px;
    }
    
    .webdesign-step-description {
        font-size: 14px;
    }
}


/* ===== RESPONSIVE STYLES ===== */

/* Desktop */
@media (min-width: 1025px) {
    .webdesign-hero {
        padding: 180px 40px 80px;
        min-height: 450px;
    }
    
    .webdesign-container {
        max-width: 900px;
    }
    
    .webdesign-title {
        font-size: 56px;
        margin-bottom: 28px;
    }
    
    .webdesign-subtitle {
        font-size: 22px;
        margin-bottom: 48px;
    }
    
    .webdesign-features-section {
        padding: 0px 40px 100px;
    }
    
    .webdesign-features-container {
        max-width: 1400px;
    }
    
    .webdesign-features-intro {
        margin-bottom: 80px;
    }
    
    .webdesign-features-title {
        font-size: 56px;
    }
    
    .webdesign-features-grid {
        gap: 40px;
    }
    
    .webdesign-feature-box {
        padding: 48px 40px;
    }
    
    .webdesign-feature-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .webdesign-feature-description {
        font-size: 17px;
        margin-bottom: 28px;
    }
    
    .webdesign-feature-list li {
        font-size: 16px;
        gap: 14px;
    }
    
    .webdesign-list-icon {
        font-size: 17px;
        margin-right: 12px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 768px) {
    .webdesign-hero {
        padding: 160px 30px 70px;
        min-height: 420px;
    }
    
    .webdesign-container {
        max-width: 750px;
    }
    
    .webdesign-title {
        font-size: 44px;
        margin-bottom: 22px;
    }
    
    .webdesign-subtitle {
        font-size: 19px;
        margin-bottom: 36px;
    }
    
    .webdesign-features-section {
        padding: 0px 30px 80px;
    }
    
    .webdesign-features-intro {
        margin-bottom: 50px;
    }
    
    .webdesign-features-title {
        font-size: 44px;
    }
    
    .webdesign-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .webdesign-feature-box {
        padding: 36px 28px;
    }
    
    .webdesign-feature-title {
        font-size: 19px;
    }
    
    .webdesign-feature-description {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .webdesign-hero {
        padding: 140px 15px 50px;
        min-height: 380px;
    }
    
    .webdesign-container {
        max-width: calc(100% - 30px);
    }
    
    .webdesign-content {
        text-align: center;
    }
    
    .webdesign-title {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 20px;
        white-space: normal;
    }
    
    .webdesign-subtitle {
        font-size: 17px;
        margin-bottom: 32px;
        line-height: 1.5;
    }
    
    .webdesign-features-section {
        padding: 0px 15px 60px;
    }
    
    .webdesign-features-intro {
        gap: 20px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .webdesign-features-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .webdesign-features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 24px;
        padding: 12px 5px 20px 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .webdesign-features-grid::-webkit-scrollbar {
        display: none;
    }
    
    .webdesign-feature-box {
        flex: 0 0 280px;
        scroll-snap-align: center;
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .webdesign-feature-icon {
        font-size: 36px;
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .webdesign-feature-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .webdesign-feature-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .webdesign-feature-list {
        gap: 10px;
    }
    
    .webdesign-feature-list li {
        font-size: 14px;
    }
    
    .webdesign-list-icon {
        font-size: 15px;
        margin-right: 8px;
    }
    
    .webdesign-mobile-dots {
        display: flex;
    }
    
    /* Mobile: Hover-Effekte entfernen */
    .webdesign-feature-box:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border-color: rgba(236, 198, 181, 0.15);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .webdesign-hero {
        padding: 130px 10px 40px;
        min-height: 350px;
    }
    
    .webdesign-container {
        max-width: calc(100% - 20px);
    }
    
    .webdesign-title {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 18px;
    }
    
    .webdesign-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .webdesign-features-section {
        padding: 0px 10px 50px;
    }
    
    .webdesign-features-intro {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .webdesign-features-title {
        font-size: 32px;
    }
    
    .webdesign-feature-box {
        flex: 0 0 260px;
        padding: 28px 20px;
    }
    
    .webdesign-feature-title {
        font-size: 17px;
    }
    
    .webdesign-feature-description {
        font-size: 14px;
    }
    
    .webdesign-feature-list li {
        font-size: 13px;
    }
}

/* ===== COMPARISON SECTION STYLES ===== */
.comparison-section {
    padding: 15px 20px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparison-container {
    width: 100%;
    max-width: 1200px;
}

.comparison-intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    margin-bottom: 60px;
}

.comparison-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.comparison-description {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-highlight {
    color: #ecc6b5;
    font-weight: 600;
}

.comparison-boxes {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

.comparison-box {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.comparison-box-left {
    border: 2px solid #ff6b35;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 107, 53, 0.2),
        0 0 25px rgba(255, 107, 53, 0.1),
        0 0 35px rgba(255, 107, 53, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.comparison-box-left.animated {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .comparison-box-left.animated {
        animation: battleLeft 4s ease-in-out infinite 0.6s;
    }
}

.comparison-box-right {
    border: 2px solid #ecc6b5;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(236, 198, 181, 0.2),
        0 0 25px rgba(236, 198, 181, 0.1),
        0 0 35px rgba(236, 198, 181, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.comparison-box-right.animated {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .comparison-box-right.animated {
        animation: battleRight 4s ease-in-out infinite 0.6s;
    }
}

/* ===== BATTLE ANIMATIONS ===== */
@keyframes battleLeft {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(3px) translateY(-2px) rotate(0.5deg);
    }
    50% {
        transform: translateX(-2px) translateY(1px) rotate(-0.3deg);
    }
    75% {
        transform: translateX(1px) translateY(-1px) rotate(0.2deg);
    }
}

@keyframes battleRight {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-3px) translateY(-1px) rotate(-0.5deg);
    }
    50% {
        transform: translateX(2px) translateY(2px) rotate(0.3deg);
    }
    75% {
        transform: translateX(-1px) translateY(-2px) rotate(-0.2deg);
    }
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.comparison-emoji {
    font-size: 36px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.comparison-box-left .comparison-emoji {
    background: rgba(255, 107, 53, 0.25);
    border: 2px solid #ff6b35;
}

.comparison-box-right .comparison-emoji {
    background: rgba(236, 198, 181, 0.25);
    border: 2px solid #ecc6b5;
}
.comparison-box-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.comparison-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.comparison-features li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    transition: all 0.2s ease;
}

.comparison-box-left .comparison-features li {
    border-color: rgba(255, 107, 53, 0.15);
}

.comparison-box-right .comparison-features li {
    border-color: rgba(236, 198, 181, 0.15);
}

.comparison-feature-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
}

.comparison-features li {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.comparison-feature-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.comparison-feature-text {
    flex-grow: 1;
    text-align: left;
}

.comparison-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    text-align: center;
    min-width: 80px;
    white-space: nowrap;
}

.comparison-badge-negative {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.comparison-badge-positive {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.comparison-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.comparison-vs.animated {
    opacity: 1;
    transform: translateY(0);
}

.vs-emoji {
    font-size: 40px;
    filter: hue-rotate(45deg) brightness(1.2);
    animation: lightningFlash 3s ease-in-out infinite;
}

/* ===== LIGHTNING FLASH ANIMATION ===== */
@keyframes lightningFlash {
    0%, 85%, 100% {
        transform: scale(1);
        filter: hue-rotate(45deg) brightness(1.2);
        text-shadow: none;
    }
    87% {
        transform: scale(1.3);
        filter: hue-rotate(45deg) brightness(2.5) saturate(1.5);
        text-shadow: 
            0 0 10px rgba(255, 255, 0, 0.8),
            0 0 20px rgba(255, 255, 0, 0.6),
            0 0 30px rgba(255, 255, 0, 0.4);
    }
    89% {
        transform: scale(1.1);
        filter: hue-rotate(45deg) brightness(1.8);
        text-shadow: 
            0 0 5px rgba(255, 255, 0, 0.6),
            0 0 10px rgba(255, 255, 0, 0.4);
    }
    91% {
        transform: scale(1.2);
        filter: hue-rotate(45deg) brightness(2.2);
        text-shadow: 
            0 0 8px rgba(255, 255, 0, 0.7),
            0 0 15px rgba(255, 255, 0, 0.5);
    }
}
.vs-text {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== COMPARISON RESPONSIVE STYLES ===== */

/* Desktop */
@media (min-width: 1025px) {
    .comparison-section {
        padding: 15px 40px 100px;
    }
    
    .comparison-container {
        max-width: 1400px;
    }
    
    .comparison-intro {
        gap: 28px;
        margin-bottom: 80px;
    }
    
    .comparison-title {
        font-size: 56px;
    }
    
    .comparison-description {
        font-size: 20px;
    }
    
    .comparison-boxes {
        gap: 60px;
    }
    
    .comparison-box {
        padding: 48px 40px;
        min-height: 450px;
    }
    
    .comparison-header {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .comparison-emoji {
        font-size: 42px;
        width: 80px;
        height: 80px;
    }
    
    .comparison-box-title {
        font-size: 22px;
    }
    
    .comparison-features {
        gap: 24px;
    }
    
    .comparison-features li {
        padding: 18px 24px;
        min-height: 60px;
    }
    
    .comparison-feature-content {
        gap: 16px;
    }
    
    .comparison-badge {
        padding: 10px 20px;
        font-size: 15px;
        min-width: 90px;
    }
    
    .comparison-features li {
        font-size: 17px;
    }
    
    .comparison-feature-icon {
        font-size: 20px;
    }
    
    .vs-emoji {
        font-size: 48px;
        animation: lightningFlash 3s ease-in-out infinite;
    }
    
    .vs-text {
        font-size: 24px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 768px) {
    .comparison-section {
        padding: 10px 30px 80px;
    }
    
    .comparison-intro {
        margin-bottom: 50px;
    }
    
    .comparison-title {
        font-size: 44px;
    }
    
    .comparison-description {
        font-size: 18px;
    }
    
    .comparison-boxes {
        gap: 30px;
    }
    
    .comparison-box {
        padding: 36px 28px;
        min-height: 420px;
    }
    
    .comparison-features {
        gap: 14px;
    }
    
    .comparison-features li {
        padding: 14px 16px;
        min-height: 52px;
    }
    
    .comparison-feature-content {
        gap: 10px;
    }
    
    .comparison-badge {
        padding: 6px 12px;
        font-size: 13px;
        min-width: 70px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .comparison-section {
        padding: 8px 15px 60px;
    }
    
    .comparison-intro {
        gap: 20px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .comparison-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .comparison-description {
        font-size: 16px;
    }
    
    .comparison-boxes {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 85%;
        margin: 0 auto;
    }
    
    .comparison-vs {
        order: 1;
        margin: 2px 0;
    }

    .comparison-box-left {
        order: 0;
        /* Mobile: Reduzierter Glow und keine Animation */
        border: 2px solid #ff6b35;
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.2),
            0 0 8px rgba(255, 107, 53, 0.15);
        animation: none;
        /* Behalte die Scroll-Animation bei */
    }

    .comparison-box-right {
        order: 2;
        /* Mobile: Reduzierter Glow und keine Animation */
        border: 2px solid #ecc6b5;
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.2),
            0 0 8px rgba(236, 198, 181, 0.15);
        animation: none;
        /* Behalte die Scroll-Animation bei */
    }
    
    .comparison-box {
        padding: 32px 24px;
        min-height: auto;
        border-radius: 20px;
    }
    
    .comparison-header {
        gap: 14px;
        margin-bottom: 28px;
    }
    
    .comparison-emoji {
        font-size: 32px;
        width: 65px;
        height: 65px;
    }
    
    .comparison-box-title {
        font-size: 18px;
    }
    
    .comparison-features {
        gap: 12px;
    }
    
    .comparison-features li {
        padding: 12px 14px;
        min-height: 48px;
        border-radius: 14px;
    }
    
    .comparison-feature-content {
        gap: 8px;
    }
    
    .comparison-badge {
        padding: 5px 10px;
        font-size: 12px;
        min-width: 60px;
    }
    
    .comparison-features li {
        font-size: 15px;
        gap: 10px;
    }
    
    .comparison-feature-icon {
        font-size: 16px;
    }
    
    .vs-emoji {
        font-size: 36px;
        animation: lightningFlash 3s ease-in-out infinite;
    }
    
    .vs-text {
        font-size: 18px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .comparison-section {
        padding: 5px 10px 50px;
    }
    
    .comparison-intro {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .comparison-title {
        font-size: 32px;
    }
    
    .comparison-description {
        font-size: 15px;
    }
    
    .comparison-boxes {
        gap: 28px;
    }
    
    .comparison-box {
        padding: 28px 20px;
    }
    
    .comparison-box-title {
        font-size: 17px;
    }
    
    .comparison-features li {
        font-size: 14px;
    }
}

/* ===== CONTACT SECTION STYLES ===== */
.contact-section {
    padding: 15px 20px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    width: 100%;
    max-width: 800px;
}

.contact-content {
    background: transparent;
    padding: 0;
    text-align: center;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 32px 0;
    letter-spacing: 1.5px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-description {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 48px 0;
    letter-spacing: 0.5px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-description.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-highlight {
    color: #ecc6b5;
    font-weight: 600;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecc6b5 0%, #d4a574 100%);
    color: #0f0f0f;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}

.contact-button.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACT RESPONSIVE STYLES ===== */

/* Desktop */
@media (min-width: 1025px) {
    .contact-section {
        padding: 40px 40px 100px;
    }
    
    .contact-container {
        max-width: 1000px;
    }
    
    .contact-title {
        font-size: 56px;
        margin-bottom: 36px;
    }
    
    .contact-description {
        font-size: 22px;
        margin-bottom: 56px;
    }
    
    .contact-button {
        padding: 20px 40px;
        font-size: 20px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 768px) {
    .contact-section {
        padding: 30px 30px 80px;
    }
    
    .contact-container {
        max-width: 850px;
    }
    
    .contact-title {
        font-size: 44px;
        margin-bottom: 28px;
    }
    
    .contact-description {
        font-size: 19px;
        margin-bottom: 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .contact-section {
        padding: 20px 15px 60px;
    }
    
    .contact-container {
        max-width: calc(100% - 30px);
    }
    
    .contact-title {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 24px;
    }
    
    .contact-description {
        font-size: 17px;
        margin-bottom: 36px;
    }
    
    .contact-button {
        padding: 16px 32px;
        font-size: 17px;
    }
    
    /* Mobile: Reduzierte Hover-Effekte */
    .contact-button:hover {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact-section {
        padding: 15px 10px 50px;
    }
    
    .contact-container {
        max-width: calc(100% - 20px);
    }
    
    .contact-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .contact-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .contact-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .webdesign-container {
        transition: none;
        opacity: 1;
        transform: none;
    }
    
    .webdesign-features-container,
    .process-timeline-container {
        transition: none;
        opacity: 1;
        transform: none;
    }
    
    .comparison-container {
        transition: none;
        opacity: 1;
        transform: none;
    }
    
    .comparison-box-left,
    .comparison-box-right {
        animation: none;
    }
    
    .vs-emoji {
        animation: none;
        transform: none;
        filter: hue-rotate(45deg) brightness(1.2);
        text-shadow: none;
    }
}