/* Angebot Page Styles */
.angebot-page {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--color-bg) 0%, #0f0f0f 100%);
}

/* Override generic section styles from styles.css */
.angebot-page section {
    min-height: auto;
    padding: 3rem 0;
    display: block;
}

.angebot-spacer {
    height: 100px;
}

/* Hero Section - Unique class names to avoid conflicts with styles.css */
.angebot-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 4rem);
}

.angebot-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.angebot-hero-text {
    flex: 0 1 auto;
    line-height: 1.8;
    color: var(--color-text);
    text-align: left;
}

.angebot-hero-text h1 {
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.angebot-hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-hover);
    margin-top: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.angebot-hero-image {
    flex-shrink: 0;
    max-width: 280px;
    line-height: 0;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.angebot-hero-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.angebot-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(37, 99, 235, 0.2);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.angebot-hero-image:hover img {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(37, 99, 235, 0.3);
}

/* Pricing Section */
.pricing-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    padding-top: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #1e40af, #2563eb);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border: 2px solid rgba(37, 99, 235, 0.5);
    transform: scale(1.03);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 30, 30, 0.6) 100%);
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-12px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.price {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.price .currency {
    font-size: 2rem;
    color: var(--color-hover);
    font-weight: 600;
}

.price .amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.price .period {
    font-size: 1.2rem;
    color: var(--color-hover);
}

.pricing-description {
    color: var(--color-hover);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.pricing-features li {
    color: var(--color-text);
    padding: 0.8rem 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.pricing-features i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
}

.services-section h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(30, 64, 175, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2563eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.service-card:hover .service-icon-large {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--color-hover);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.tech-badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-text);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.5);
}

/* Examples Section */
.examples-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.examples-section h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.example-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.example-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.4);
}

.example-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--color-secondary);
    display: block;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

a.example-image {
    text-decoration: none;
    cursor: pointer;
}

.example-card:hover .example-image img {
    transform: scale(1.15);
}

.example-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(30, 64, 175, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 3.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.example-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.example-card:hover .example-overlay {
    opacity: 1;
}

.example-content {
    padding: 1.5rem;
}

.example-content h3 {
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.example-content p {
    color: var(--color-hover);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.example-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.example-link:hover {
    color: #60a5fa;
    gap: 1rem;
}

/* CTA Section */
.cta-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
    text-align: center;
}

.cta-content {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, rgba(30, 64, 175, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 32px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--color-hover);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border: none;
}

.cta-button.primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

.cta-button.secondary {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    color: var(--color-text);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(37, 99, 235, 0.2);
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .angebot-hero {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 1.5rem;
    }
    
    .angebot-hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .angebot-hero-image {
        max-width: 220px;
        margin: 0 auto;
        order: -1;
    }

    .angebot-hero-text h1 {
        font-size: 2.2rem;
    }

    .angebot-hero-subtitle {
        font-size: 1.1rem;
    }

    .pricing-section h2,
    .services-section h2,
    .examples-section h2 {
        font-size: 2rem;
    }

    .price .amount {
        font-size: 3rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-12px);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-content {
        padding: 3rem 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .angebot-spacer {
        height: 60px;
    }

    .angebot-hero,
    .pricing-section,
    .services-section,
    .examples-section,
    .cta-section {
        padding: 1rem;
    }

    .angebot-hero-text h1 {
        font-size: 1.8rem;
    }

    .angebot-hero-subtitle {
        font-size: 1rem;
    }

    .pricing-card,
    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }
}
