/* Restliche Styles (Below-the-fold) */

/* Global Section Titles */
.section-title {
    font-size: var(--fs-h2);
    text-align: center;
    margin-bottom: 80px;
    font-weight: var(--fw-normal);
    width: 100%;
}

/* Advantages Section */
.advantages {
    padding-block: var(--space-section);
    background: var(--color-white);
}

.advantages .container-wide {
    background: linear-gradient(180deg, #DFEDFD 0%, #BFDAFA 100%);
    padding: 80px 60px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.advantages h2 {
    font-size: var(--fs-h2);
    color: var(--color-text);
    margin-bottom: 15px;
    font-weight: var(--fw-normal);
    line-height: 1.1;
    text-align: center;
}

.advantages .subline {
    font-size: var(--fs-h2);
    color: var(--color-primary);
    margin-bottom: 60px;
    font-weight: var(--fw-normal);
    line-height: 1.1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.adv-card {
    padding: 20px;
}

.adv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #E6F6FC;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.adv-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.adv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: var(--fw-bold);
}

.adv-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Future Section */
.future {
    padding-block: var(--space-section);
    background: var(--color-white);
}

.future-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.future-text h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.highlight-blue {
    color: var(--color-primary);
}

.future-text p {
    color: var(--color-text-muted);
    margin-bottom: 25px;
    font-size: 1.125rem;
    line-height: 1.7;
}

.future-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn-blue-outline {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: var(--fw-bold);
    margin-top: 15px;
    transition: all 0.3s;
}

/* Services Section */
.services {
    padding-block: 140px;
    /* Erhöht für mehr Premium-Gefühl */
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: #E6F6FC;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.card-content {
    flex: 1;
    z-index: 2;
    text-align: center;
}

.card-content h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: var(--fw-bold);
}

.card-content p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 400px;
    margin-inline: auto;
}

.btn-blue-small {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: var(--fw-bold);
    font-size: 0.95rem;
}

.card-image {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 480px;
    z-index: 1;
    opacity: 0.9;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.support-icon {
    width: 550px !important;
    /* Massiv vergrößert für XD-Look */
    bottom: -100px !important;
    right: -100px !important;
    opacity: 0.6 !important;
}

.service-card:hover .card-image {
    transform: scale(1.05) translate(-10px, -10px);
}

/* Pricing Section */
.pricing {
    padding-block: var(--space-section);
    background: #F0F7FF;
    /* Exaktes XD Hellblau */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.price-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.price-card .card-inner {
    padding: 50px 40px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--color-text);
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 35px;
    color: var(--color-black);
    line-height: 1;
}

.price .period {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.price-features {
    list-style: none;
    margin-bottom: 45px;
    text-align: left;
    flex: 1;
}

.price-features li {
    padding-block: 10px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: var(--color-text);
}

.price-card.featured {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 159, 227, 0.2);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured .period,
.price-card.featured .price-features li {
    color: var(--color-white);
}

.price-card.featured .price-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-footnote {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 40px;
}

/* Custom Package Section */
.custom-package {
    padding-block: var(--space-section);
    background: var(--color-white);
    text-align: center;
}

.custom-package-content {
    max-width: 700px;
    margin: 0 auto;
}

.custom-package h2 {
    font-size: var(--fs-h2);
    margin-bottom: 20px;
    font-weight: var(--fw-normal);
    line-height: 1.1;
}

.custom-package p {
    color: var(--color-text-muted);
    margin-bottom: 15px;
    font-size: 1.125rem;
}

.custom-package-footnote {
    font-size: 0.875rem !important;
    color: var(--color-text-muted);
    margin-bottom: 30px !important;
}

/* Founder Section */
.founder {
    padding-block: var(--space-section);
    background: var(--color-white);
}

.founder-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.founder-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: var(--fw-bold);
}

.founder-title {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 30px;
}

.founder-content blockquote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
    border-left: 4px solid var(--color-primary);
    padding-left: 30px;
}

/* Pricing Updates */
.price-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.bestseller-badge {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-primary);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--fw-bold);
    margin-bottom: 20px;
}

.badge-neu {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: var(--fw-bold);
    margin-left: 8px;
}

.price-card.featured {
    position: relative;
}

.price-card.featured .btn-white {
    background: var(--color-white);
    color: var(--color-primary);
}

/* Footer */
.site-footer {
    background: #1A1A1A;
    color: var(--color-white);
    padding-block: 80px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    color: #999999;
    max-width: 300px;
}

.footer-nav h4 {
    margin-bottom: 25px;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.875rem;
    color: #666666;
}

/* ========================================
   RESPONSIVE DESIGN - Tablet (900px)
   ======================================== */
@media (max-width: 900px) {
    /* Typography */
    .section-title {
        margin-bottom: 60px;
        font-size: var(--fs-h2);
    }

    /* Advantages Section */
    .advantages .container-wide {
        padding: 60px 40px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .advantages .subline {
        margin-bottom: 40px;
    }

    /* Future Section */
    .future-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .future-text h2 {
        font-size: 36px;
    }

    /* Services Section */
    .services {
        padding-block: 100px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        min-height: 300px;
        padding: 40px 30px;
    }

    .card-image {
        opacity: 0.5;
        right: -80px;
        bottom: -80px;
        width: 400px;
    }

    /* Pricing Section */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .price-card.featured {
        transform: none;
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    /* Founder Section */
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - Mobile (768px)
   ======================================== */
@media (max-width: 768px) {
    /* Global */
    .container {
        padding-inline: 1rem;
    }

    /* Section Title */
    .section-title {
        margin-bottom: 50px;
        font-size: 1.5rem;
    }

    /* Hero Section */
    .hero-text-overlay h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-text-overlay p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .hero-features li {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    /* Advantages Section */
    .advantages .container-wide {
        padding: 40px 25px;
        border-radius: 12px;
    }

    .advantages h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .advantages .subline {
        font-size: 1.25rem;
        margin-bottom: 35px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .adv-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .adv-icon img {
        width: 35px;
        height: 35px;
    }

    .adv-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .adv-card p {
        font-size: 0.9rem;
    }

    /* Future Section */
    .future {
        padding-block: 60px;
    }

    .future-text h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .future-text p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .btn-blue-outline {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Services Section */
    .services {
        padding-block: 60px;
    }

    .service-card {
        min-height: auto;
        padding: 30px 20px;
    }

    .card-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .card-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .btn-blue-small {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .card-image {
        display: none;
    }

    .support-icon {
        display: none !important;
    }

    /* Pricing Section */
    .pricing {
        padding-block: 60px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card {
        border-radius: 12px;
    }

    .price-card .card-inner {
        padding: 30px 20px;
    }

    .price-card h3 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .price {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .price-features {
        margin-bottom: 30px;
    }

    .price-features li {
        padding-block: 8px;
        font-size: 0.85rem;
    }

    .price-card.featured {
        grid-column: auto;
        max-width: 100%;
        transform: scale(1);
        margin-bottom: 10px;
    }

    .price-desc {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .bestseller-badge {
        padding: 4px 12px;
        font-size: 0.65rem;
        margin-bottom: 15px;
    }

    .badge-neu {
        padding: 2px 6px;
        font-size: 0.6rem;
        margin-left: 5px;
    }

    /* Custom Package Section */
    .custom-package {
        padding-block: 50px;
    }

    .custom-package-content {
        padding: 0 1rem;
    }

    .custom-package h2 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .custom-package p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    /* Founder Section */
    .founder {
        padding-block: 50px;
    }

    .founder-content h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .founder-title {
        margin-bottom: 20px;
    }

    .founder-content blockquote {
        font-size: 1rem;
        padding-left: 20px;
    }

    /* Footer */
    .site-footer {
        padding-block: 50px 30px;
    }

    .footer-grid {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-brand p {
        max-width: 100%;
        margin-top: 15px;
        font-size: 0.9rem;
    }

    .footer-nav h4 {
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    .footer-nav li {
        margin-bottom: 10px;
    }

    .footer-nav a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 0.8rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - Small Mobile (600px)
   ======================================== */
@media (max-width: 600px) {
    .container {
        padding-inline: 0.75rem;
    }

    /* Hero Section */
    .hero-text-overlay {
        padding: 30px 15px;
    }

    .hero-text-overlay h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-text-overlay p {
        font-size: 0.85rem;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn-white,
    .btn-blue {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    /* Advantages */
    .advantages .container-wide {
        padding: 30px 15px;
    }

    .advantages h2 {
        font-size: 1.25rem;
    }

    .advantages .subline {
        font-size: 1.1rem;
    }

    .adv-card {
        padding: 10px;
    }

    /* Future */
    .future-text h2 {
        font-size: 1.25rem;
    }

    .future-text p {
        font-size: 0.85rem;
    }

    /* Services */
    .service-card {
        padding: 20px 15px;
    }

    .card-content h3 {
        font-size: 1.25rem;
    }

    .card-content p {
        font-size: 0.8rem;
    }

    /* Pricing */
    .section-title {
        font-size: 1.25rem;
        margin-bottom: 35px;
    }

    .price {
        font-size: 2rem;
    }

    .price-card .card-inner {
        padding: 20px 15px;
    }

    .price-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .price-features {
        margin-bottom: 20px;
    }

    .price-features li {
        padding-block: 6px;
        font-size: 0.75rem;
    }

    /* Buttons */
    .btn-cta,
    .btn-blue {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - Extra Small (480px)
   ======================================== */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding-inline: 0.5rem;
    }

    /* Header */
    .logo img {
        width: 130px;
        height: 48px;
    }

    /* Hero */
    .hero-text-overlay {
        padding: 20px 10px;
    }

    .hero-text-overlay h1 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .hero-text-overlay p {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .hero-features {
        gap: 8px;
        margin-top: 15px;
    }

    .hero-features li {
        font-size: 0.75rem;
    }

    /* Advantages */
    .advantages .container-wide {
        padding: 25px 10px;
        border-radius: 8px;
    }

    .advantages h2 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .advantages .subline {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .adv-icon {
        width: 60px;
        height: 60px;
    }

    .adv-icon img {
        width: 30px;
        height: 30px;
    }

    .adv-card h3 {
        font-size: 1rem;
    }

    /* Pricing Title */
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .price {
        font-size: 1.75rem;
    }

    .price .period {
        font-size: 0.8rem;
    }

    .price-card .card-inner {
        padding: 15px 10px;
    }

    .price-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .price-features {
        margin-bottom: 15px;
    }

    .price-features li {
        padding-block: 5px;
        font-size: 0.7rem;
    }

    /* Footer */
    .site-footer {
        padding-block: 40px 20px;
    }

    .footer-nav h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
}