/* === E-CARGO LOGISTIC - MAIN STYLES === */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #34C759;
    font-weight: 600;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #34C759;
}

.tracking-btn {
    background: #34C759;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tracking-btn:hover {
    background: #28A745;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 199, 89, 0.3);
}

.tracking-btn i {
    margin-right: 8px;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 10px;
    opacity: 0.8;
}

.login-btn:hover {
    background: rgba(52, 199, 89, 0.2);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.2);
}

.login-btn i {
    font-size: 0.9rem;
}

/* === BUTTONS === */
.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
    font-family: inherit;
}

.btn-primary {
    background: #34C759;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 199, 89, 0.3);
}

.btn-primary:hover {
    background: #28A745;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 199, 89, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.logistik-page .hero-background {
    background-image: url('../images/hero-logistik.webp');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 600px;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* === TRACKING MODAL === */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e5e5e7;
}

.modal-header h3 {
    color: #1d1d1f;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: #86868b;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #34C759;
}

.modal-body {
    padding: 30px;
}

/* === SERVICES SECTION === */
.services {
    padding: 100px 0;
    background: #f5f5f7;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #1d1d1f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #34C759;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 3rem;
    color: white;
    width: 80px;
    height: 80px;
    background: #34C759;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-icon i {
    background: #28A745;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1d1d1f;
}

.service-card p {
    color: #86868b;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-card li {
    padding: 8px 0;
    color: #1d1d1f;
    position: relative;
    padding-left: 20px;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #34C759;
    font-weight: bold;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    color: #34C759;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #28A745;
    transform: translateX(5px);
}

/* Service Card Links */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-card-link .service-card {
    cursor: pointer;
}

.service-card-link:hover .service-card {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card-link:hover .service-icon i {
    background: #28A745;
    transform: scale(1.1);
}

/* === ABOUT SECTION === */
.about {
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.about p {
    font-size: 1.2rem;
    color: #86868b;
    margin-bottom: 40px;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #34C759;
    margin-bottom: 5px;
}

.stat p {
    color: #86868b;
    font-size: 1rem;
    margin: 0;
}

.about-image {
    flex: 1;
}

/* === INTEGRATION SECTION === */
.integration-section {
    padding: 100px 0;
    background: #ffffff;
}

.integration-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.integration-content {
    max-width: 500px;
}

.section-subtitle {
    display: inline-block;
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #1d1d1f;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.integration-benefits {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.integration-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #1d1d1f;
    font-weight: 500;
}

.integration-benefits i {
    color: #34C759;
    margin-right: 15px;
    font-size: 1.2rem;
}

.integration-platforms {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 199, 89, 0.1);
}

.integration-platforms h3 {
    color: #1d1d1f;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.platform-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid #f1f3f4;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #fafbfc;
    cursor: pointer;
}

.platform-logo:hover {
    border-color: #34C759;
    background: rgba(52, 199, 89, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 199, 89, 0.15);
}

.platform-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.platform-logo:hover img {
    filter: grayscale(0%);
}

.platform-logo span {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
}

.platform-logo.custom {
    background: linear-gradient(135deg, #34C759, #28A745);
    border-color: #34C759;
    color: white;
}

.platform-logo.custom span {
    color: white;
}

.custom-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.custom-icon i {
    font-size: 1.5rem;
    color: white;
}

.platform-note {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* === CUSTOMERS SECTION === */
.customers {
    padding: 80px 0;
    background: #f5f5f7;
    text-align: center;
}

.customers h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.customers p {
    font-size: 1.2rem;
    color: #86868b;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.customer-logo {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.customer-logo a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.customer-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.more-customers-simple {
    border: 2px dashed #34C759;
    background: rgba(52, 199, 89, 0.05);
}

.more-customers-simple:hover {
    background: rgba(52, 199, 89, 0.1);
    border-color: #28A745;
}

.more-customers-simple a {
    text-decoration: none;
    color: inherit;
}

/* === FAQ SECTION === */
.faq {
    padding: 100px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #1d1d1f;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #f5f5f7;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #34C759;
    box-shadow: 0 4px 20px rgba(52, 199, 89, 0.1);
}

.faq-item.active {
    border-color: #34C759;
    box-shadow: 0 4px 20px rgba(52, 199, 89, 0.15);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question i {
    font-size: 0.9rem;
    color: #34C759;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px 30px;
}

.faq-answer p {
    color: #86868b;
    line-height: 1.8;
    margin: 0;
}

/* === CONTACT SECTION === */
.contact {
    padding: 100px 0;
    background: #f5f5f7;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.contact > p {
    text-align: center;
    font-size: 1.2rem;
    color: #86868b;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.08), rgba(40, 167, 69, 0.12));
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(52, 199, 89, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(52, 199, 89, 0.1);
    animation: slideInFromLeft 0.6s ease-out;
}

.contact-info h3 {
    color: #34C759;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(52, 199, 89, 0.2);
}

.contact-item {
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(52, 199, 89, 0.1);
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-item:hover {
    background: rgba(52, 199, 89, 0.05);
    padding-left: 10px;
    border-radius: 10px;
}

.contact-item strong {
    color: #34C759;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #34C759;
    text-decoration: underline;
}

.contact-item p {
    color: #1d1d1f;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #34C759;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1d1d1f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e5e7;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #34C759;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* === PRICE CARDS === */
.pricing-reviews-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.pricing-section {
    position: sticky;
    top: 120px;
}

.price-card {
    background: linear-gradient(135deg, #34C759, #28A745);
    color: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(52, 199, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.price-header h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.price-unit {
    font-size: 1rem;
    opacity: 0.9;
}

.price-features {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.price-features h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.price-features ul {
    list-style: none;
    padding: 0;
}

.price-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: white;
}

.price-features li i {
    color: white;
    margin-right: 12px;
    width: 16px;
    font-size: 0.9rem;
}

.price-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.price-note {
    font-size: 0.85rem;
    color: white;
    opacity: 0.8;
    margin: 0;
}

/* === FOOTER === */
.footer {
    background: #1d1d1f;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #86868b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #34C759;
}

.footer-bottom {
    border-top: 1px solid #424245;
    padding-top: 30px;
    text-align: center;
    color: #86868b;
}

.footer-bottom a {
    color: #86868b;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #34C759;
}

/* === ANIMATIONS === */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .integration-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }
    
    .tracking-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .login-btn {
        width: 35px;
        height: 35px;
        margin-left: 5px;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .pricing-reviews-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .customers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
        max-height: 300px;
    }
}

/* === PAGE SPECIFIC STYLES === */

/* Logistik Page */
.logistik-page .services .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

@media (min-width: 1200px) {
    .logistik-page .services .services-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px;
    }
}

.logistik-page .services .service-card {
    padding: 25px 20px;
}

.logistik-page .services .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.logistik-page .services .service-card ul li {
    font-size: 0.9rem;
    padding: 5px 0;
}

/* Fulfillment Page */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #e5e5e7;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.checkbox-item:hover {
    border-color: #34C759;
    background: rgba(52, 199, 89, 0.05);
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #34C759;
    width: 16px;
    height: 16px;
}

.checkbox-item span {
    font-size: 0.9rem;
    color: #1d1d1f;
    font-weight: 500;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
    border-left: 4px solid #34C759;
}

.legal-section h2 {
    color: #1d1d1f;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.info-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-item strong {
    color: #34C759;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
/* === IMAGES & SPECIAL SECTIONS === */

/* Verbesserte Bildcontainer */
.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Ruhrgebiet Hintergrund-Umriss */
.ruhrgebiet-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.08;
    pointer-events: none;
}

.ruhrgebiet-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    filter: grayscale(100%);
}

/* Live-Statistiken */
.live-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(52, 199, 89, 0.05);
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(52, 199, 89, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(52, 199, 89, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 199, 89, 0.1);
}

.stat-icon {
    display: block;
    color: #34C759;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #34C759;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #86868b;
    font-weight: 500;
}

/* Verbesserte Coverage Stats */
.coverage-stats {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.coverage-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 199, 89, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coverage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #34C759, #28A745);
}

.coverage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.coverage-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #34C759;
    margin-bottom: 8px;
}

.coverage-label {
    font-size: 0.9rem;
    color: #86868b;
    font-weight: 500;
}

/* City Groups mit professionellem Design */
.city-group {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(52, 199, 89, 0.1);
    transition: all 0.3s ease;
}

.city-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Professionelle Stadt-Icons */
.city-icon {
    color: #34C759;
    margin-right: 12px;
    width: 16px;
    font-size: 0.9rem;
    text-align: center;
}

.city-list {
    list-style: none;
    padding: 0;
}

.city-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: #1d1d1f;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(229, 229, 231, 0.3);
}

.city-list li:last-child {
    border-bottom: none;
}

.city-list li:hover {
    color: #34C759;
    padding-left: 5px;
}

.city-list li:hover .city-icon {
    color: #28A745;
    transform: scale(1.1);
}

/* Review Cards (für die Bewertungen) */
.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: white;
    border: 1px solid #e5e5e7;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border-color: #34C759;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-rating {
    font-weight: 600;
    color: #1d1d1f;
    font-size: 1.1rem;
}

.review-text {
    color: #1d1d1f;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author strong {
    color: #1d1d1f;
    display: block;
    margin-bottom: 3px;
}

.review-author span {
    color: #86868b;
    font-size: 0.9rem;
}

/* Google Bewertungen Link */
.google-reviews-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 0.3s ease;
}

.google-reviews-link:hover {
    transform: translateY(-2px);
}

.google-badge {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e5e5e7;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.google-badge:hover {
    border-color: #34C759;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.google-info {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
}

.google-stars {
    color: #FFD700;
    font-size: 0.8rem;
}

/* Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #34C759, #28A745);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Responsive Design für Bilder */
@media (max-width: 768px) {
    .ruhrgebiet-background {
        opacity: 0.04;
    }
    
    .live-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .coverage-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .image-container {
        height: 300px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .city-group {
        padding: 20px;
    }
}
/* === TRACKING MODAL & FORMS === */

/* Modal Body Form Styles */
.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1d1d1f;
}

.modal-body input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e5e7;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.modal-body input:focus {
    outline: none;
    border-color: #34C759;
}

.modal-body .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* Tracking Result */
.tracking-result {
    margin-top: 30px;
    padding: 20px;
    background: #f5f5f7;
    border-radius: 12px;
}

.tracking-result h4 {
    color: #1d1d1f;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.tracking-info {
    margin-bottom: 30px;
}

.tracking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e7;
}

.tracking-item:last-child {
    border-bottom: none;
}

.tracking-item strong {
    color: #1d1d1f;
    font-weight: 500;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-in-transit {
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
}

.status-delivered {
    background: rgba(52, 199, 89, 0.2);
    color: #28A745;
}

.status-pending {
    background: rgba(255, 149, 0, 0.1);
    color: #FF9500;
}

/* Timeline */
.tracking-timeline h5 {
    color: #1d1d1f;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e5e7;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #34C759;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #34C759;
}

.timeline-item.completed::before {
    background: #34C759;
}

.timeline-item.current::before {
    background: #FF9500;
    box-shadow: 0 0 0 2px #FF9500;
}

.timeline-item.pending::before {
    background: #e5e5e7;
    box-shadow: 0 0 0 2px #e5e5e7;
}

.timeline-content {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-date {
    color: #86868b;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.timeline-status {
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 5px;
}

.timeline-location {
    color: #86868b;
    font-size: 0.9rem;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .close {
        font-size: 24px;
    }
    
    .tracking-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item::before {
        left: 9px;
        width: 10px;
        height: 10px;
    }
}

/* Modal Animation */
.modal.show {
    display: block;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1999;
}

/* Focus States für bessere Accessibility */
.modal-content:focus {
    outline: 3px solid rgba(52, 199, 89, 0.3);
    outline-offset: -3px;
}

.close:focus {
    outline: 2px solid #34C759;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Loading State für Tracking */
.tracking-loading {
    text-align: center;
    padding: 40px 20px;
    color: #86868b;
}

.tracking-loading i {
    font-size: 2rem;
    color: #34C759;
    margin-bottom: 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Error State */
.tracking-error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.2);
    color: #FF3B30;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.tracking-error i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

/* Success State */
.tracking-success {
    background: rgba(52, 199, 89, 0.1);
    border: 1px solid rgba(52, 199, 89, 0.2);
    color: #34C759;
    padding: 20px;
    border-radius: 8px;
}
/* USP-Felder */
.usp-section {
    background: #fff;
    padding: 80px 0 40px 0;
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.usp-card {
    background: #f5f5f7;
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(52,199,89,0.07);
    padding: 40px 30px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}
.usp-card:hover {
    box-shadow: 0 8px 35px rgba(52,199,89,0.17);
    transform: translateY(-5px) scale(1.03);
}
.usp-icon {
    background: #34C759;
    color: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(52,199,89,0.1);
}
.usp-card h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: #1d1d1f;
    font-weight: 600;
}
.usp-card p {
    font-size: 1.05rem;
    color: #86868b;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .usp-card {
        padding: 25px 12px;
    }
}
/* === FEATURE SECTION (Alternating rows) === */
.feature-section {
  background: #f5f5f7;   /* wie der Abschnitt darüber */
  padding: 80px 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row:nth-child(2n) {
  grid-template-columns: 1fr 1.1fr;
}

.feature-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.feature-media:hover img {
  transform: scale(1.03);
}

.feature-copy .feature-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(52,199,89,0.12);
  color: #34C759;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feature-copy h3 {
  font-size: 2rem;
  margin: 10px 0 12px;
  color: #1d1d1f;
}

.feature-copy p {
  color: #6c757d;
  font-size: 1.08rem;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
  color: #1d1d1f;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #34C759;
  font-weight: 700;
}

@media (max-width: 992px) {
  .feature-row,
  .feature-row:nth-child(2n) {
    grid-template-columns: 1fr;
  }
  .feature-media img { height: 300px; }
}
/* Logistik-Seite: Haken links, Text sauber eingerückt (finales Override) */
.logistik-page .services .service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.logistik-page .services .service-card li {
    display: grid !important;
    grid-template-columns: 15px 1fr !important; /* Platz für Haken + Text */
    gap: 10px;
    align-items: start;
    padding: 0 !important;                      /* globale Einrückung aus */
    line-height: 1.6;
}

.logistik-page .services .service-card li::before {
    content: "✓";
    color: #34C759;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    position: static !important;                /* absolute Positionierung neutralisieren */
    left: auto !important;
    top: auto !important;
}
/* === FULFILLMENT: Scroll-Story Prozess === */
.process-story {
  background: #fff;
  padding: 100px 0;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.process-copy h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.process-copy > p {
  color: #6c757d;
  margin-bottom: 28px;
}

.process-steps {
  display: grid;
  gap: 18px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(52,199,89,0.15);
}

.step {
  background: #fff;
  border: 1px solid #e5e5e7;
  border-radius: 16px;
  padding: 22px 22px 22px 56px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  scroll-margin-top: 120px; /* wegen fester Navbar */
}

.step::before {
  counter-increment: process-step;
  content: attr(data-step);
}

.process-steps { counter-reset: process-step; }
.step::before {
  content: counter(process-step);
  position: absolute;
  left: 8px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #34C759;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(52,199,89,0.25);
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: #1d1d1f;
}

.step p {
  color: #6c757d;
  margin-bottom: 10px;
}

.step ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.step ul li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  line-height: 1.6;
}

.step ul li::before {
  content: "✓";
  color: #34C759;
  font-weight: 700;
  margin-top: 0.15em;
}

/* Aktiver Schritt */
.step.is-active {
  border-color: #34C759;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52,199,89,0.12);
}
.step.is-active h3 { color: #1d1d1f; }

/* Rechte Spalte: Sticky Visual */
.process-media {
  position: sticky;
  top: 120px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #f5f5f7, #e9f7ef);
  min-height: 420px;
}

.process-media img, .process-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
  color: #fff;
  font-weight: 600;
}

/* Responsiv */
@media (max-width: 1024px) {
  .process-layout { grid-template-columns: 1fr; gap: 28px; }
  .process-media { position: relative; top: 0; min-height: 320px; }
}

@media (max-width: 768px) {
  .step { padding: 18px 18px 18px 52px; }
  .step::before { top: 14px; left: 8px; }
  .process-media { min-height: 260px; }
}
/* Fulfillment: Prozess-Abschnitt leicht grau hinterlegen */
.fulfillment-page .process-story {
    background: #f5f5f7;
}
/* === FULFILLMENT: Scroll-Story Prozess === */
/* Hintergrund leicht grau für den Abschnitt */
.fulfillment-page .process-story {
  background: #f5f5f7;
  padding: 100px 0;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.process-copy h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.process-copy > p {
  color: #6c757d;
  margin-bottom: 28px;
}

.process-steps {
  display: grid;
  gap: 18px;
  position: relative;
  counter-reset: process-step;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(52,199,89,0.15);
}

.step {
  background: #fff;
  border: 1px solid #e5e5e7;
  border-radius: 16px;
  padding: 22px 22px 22px 56px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  scroll-margin-top: 120px; /* fixe Navbar ausgleichen */
}

.step::before {
  counter-increment: process-step;
  content: counter(process-step);
  position: absolute;
  left: 8px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #34C759;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(52,199,89,0.25);
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: #1d1d1f;
}

.step p {
  color: #6c757d;
  margin-bottom: 10px;
}

.step ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.step ul li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  line-height: 1.6;
}

.step ul li::before {
  content: "✓";
  color: #34C759;
  font-weight: 700;
  margin-top: 0.15em;
}

/* aktivierter Schritt */
.step.is-active {
  border-color: #34C759;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52,199,89,0.12);
}

/* Rechte Spalte: Sticky Visual */
.process-media {
  position: sticky;
  top: 120px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #f5f5f7, #e9f7ef);
  min-height: 420px;
}

.process-media img, .process-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s ease;
}

.process-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
  color: #fff;
  font-weight: 600;
}

/* Responsiv */
@media (max-width: 1024px) {
  .process-layout { grid-template-columns: 1fr; gap: 28px; }
  .process-media { position: relative; top: 0; min-height: 320px; }
}

@media (max-width: 768px) {
  .step { padding: 18px 18px 18px 52px; }
  .step::before { top: 14px; left: 8px; }
  .process-media { min-height: 260px; }
}
/* === Fulfillment: Drei Bildkarten mit permanenten Titeln + Hover-Infos === */
.about-fulfillment-images {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.about-fulfillment-images .about-header {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.about-fulfillment-images .about-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.about-fulfillment-images .lead {
  color: #6c757d;
  font-size: 1.03rem;
}

/* Grid for the three images */
.fulfillment-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* Each card */
.image-card {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 320px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: transform .22s ease, box-shadow .22s ease;
}

/* Image fills the card */
.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  transition: transform .4s ease, filter .3s ease;
}

/* Persistent title bar (always visible) */
.card-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  z-index: 3; /* stay on top so it's always readable */
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Overlay with extra info - hidden by default, appears on hover/focus */
.card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 100%);
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
  z-index: 2; /* below the title so title remains visible */
}

/* Overlay text/bullets */
.card-overlay .card-text {
  margin: 0;
  color: rgba(255,255,255,0.95);
  font-size: 0.95rem;
}
.card-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(255,255,255,0.95);
  font-size: 0.9rem;
}
.card-bullets li {
  margin: 4px 0;
  display: flex;
  align-items: center;
}
.card-bullets li::before {
  content: "•";
  margin-right: 8px;
  color: #34C759;
  font-weight: 700;
}

/* Hover / Focus effects (mouse + keyboard) */
.image-card:hover,
.image-card:focus {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  outline: none;
}
.image-card:hover img,
.image-card:focus img {
  transform: scale(1.06);
  filter: brightness(.78);
}
.image-card:hover .card-overlay,
.image-card:focus .card-overlay {
  opacity: 1;
  transform: translateY(0);
  aria-hidden: false;
}

/* Ensure keyboard users can open overlay (focus visible) */
.image-card:focus .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Small screens: stack */
@media (max-width: 1024px) {
  .fulfillment-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-card { min-height: 300px; }
}

@media (max-width: 640px) {
  .fulfillment-image-grid {
    grid-template-columns: 1fr;
  }
  .image-card { min-height: 220px; }
  .card-overlay { padding: 16px; }
  .card-title { padding: 12px 14px; font-size: 1rem; }
  .card-overlay h3 { font-size: 1.05rem; }
}
/* Fulfillment-Bildkarten: Titel fährt beim Hover nach oben, Details blenden ein */
.about-fulfillment-images .image-card {
  position: relative;
}

.about-fulfillment-images .card-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  z-index: 3;                 /* bleibt über dem Overlay */
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  transform: translateY(0);   /* Startposition unten */
  transition: transform .25s ease;
}

/* Overlay-Details erscheinen, Titel fährt nach oben */
.about-fulfillment-images .image-card:hover .card-title,
.about-fulfillment-images .image-card:focus .card-title {
  transform: translateY(-72px);  /* Abstand nach oben – bei Bedarf anpassen */
}

.about-fulfillment-images .card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 22px 18px;       /* Grundabstand */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 100%);
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease, padding-bottom .22s ease;
  z-index: 2;                    /* unter dem Titel */
}

/* Beim Hover/Focus mehr Platz unten schaffen, damit Text nicht unter dem Titel liegt */
.about-fulfillment-images .image-card:hover .card-overlay,
.about-fulfillment-images .image-card:focus .card-overlay {
  opacity: 1;
  transform: translateY(0);
  padding-bottom: calc(22px + 44px); /* 44px ~ Titelhöhe */
}

/* Responsive Feintuning: kleinere Verschiebung auf kleineren Screens */
@media (max-width: 1024px) {
  .about-fulfillment-images .image-card:hover .card-title,
  .about-fulfillment-images .image-card:focus .card-title {
    transform: translateY(-56px);
  }
  .about-fulfillment-images .image-card:hover .card-overlay,
  .about-fulfillment-images .image-card:focus .card-overlay {
    padding-bottom: calc(18px + 40px);
  }
}

@media (max-width: 640px) {
  .about-fulfillment-images .image-card:hover .card-title,
  .about-fulfillment-images .image-card:focus .card-title {
    transform: translateY(-44px);
  }
  .about-fulfillment-images .image-card:hover .card-overlay,
  .about-fulfillment-images .image-card:focus .card-overlay {
    padding-bottom: calc(16px + 36px);
  }
}
/* Fulfillment Bildkarten: Panel mit dauerhaft sichtbarem Titel, das nach oben aufklappt */
.about-fulfillment-images .image-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.about-fulfillment-images .image-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease, filter .25s ease;
}

/* Altes Overlay/Titel sicher deaktivieren, falls noch vorhanden */
.about-fulfillment-images .card-overlay,
.about-fulfillment-images .card-title { display: none !important; }

/* Neues Panel */
.about-fulfillment-images .card-panel {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.75) 100%);
  color: #fff;
  max-height: 64px;              /* initial nur Titel sichtbar */
  overflow: hidden;
  transition: max-height .28s ease;
  padding: 12px 16px 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
}

.about-fulfillment-images .card-panel-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(255,255,255,0.6);
}

/* Extra-Infos (Text + Bullets) */
.about-fulfillment-images .card-panel-extra {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .22s ease, transform .22s ease;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
}

.about-fulfillment-images .card-panel-extra p {
  margin: 0 0 8px;
}

.about-fulfillment-images .card-panel-extra ul {
  list-style: none; margin: 0; padding: 0;
}

.about-fulfillment-images .card-panel-extra li {
  display: flex; align-items: center; gap: 8px;
  margin: 3px 0;
}

.about-fulfillment-images .card-panel-extra li::before {
  content: "✓"; color: #34C759; font-weight: 800; width: 14px;
}

/* Hover/Focus: Panel klappt auf, Extras blenden ein, Bild leicht abdunkeln/zoomen */
.about-fulfillment-images .image-card:hover,
.about-fulfillment-images .image-card:focus {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(255,255,255,0.12);
  outline: none;
}

.about-fulfillment-images .image-card:hover img,
.about-fulfillment-images .image-card:focus img {
  transform: scale(1.04);
  filter: brightness(.85);
}

.about-fulfillment-images .image-card:hover .card-panel,
.about-fulfillment-images .image-card:focus .card-panel {
  max-height: 240px; /* bei Bedarf größer/kleiner machen */
}

.about-fulfillment-images .image-card:hover .card-panel-extra,
.about-fulfillment-images .image-card:focus .card-panel-extra {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Tuning */
@media (max-width: 1024px) {
  .about-fulfillment-images .card-panel { max-height: 60px; padding: 10px 14px 12px; }
  .about-fulfillment-images .image-card:hover .card-panel,
  .about-fulfillment-images .image-card:focus .card-panel { max-height: 220px; }
}

@media (max-width: 640px) {
  .about-fulfillment-images .card-panel { max-height: 56px; }
  .about-fulfillment-images .image-card:hover .card-panel,
  .about-fulfillment-images .image-card:focus .card-panel { max-height: 200px; }
}
/* Fulfillment Bildkarten: Overlay-Texte weiß und besser lesbar */
.about-fulfillment-images .card-overlay .card-text,
.about-fulfillment-images .card-overlay .card-bullets,
.about-fulfillment-images .card-overlay .card-bullets li {
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

/* Falls du bereits die Panel-Variante nutzt (card-panel-extra) */
.about-fulfillment-images .card-panel-extra,
.about-fulfillment-images .card-panel-extra p,
.about-fulfillment-images .card-panel-extra li {
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
/* === MOBILE NAV / BURGER-MENÜ === */
.nav-toggle {
  display: none; /* Desktop: ausgeblendet */
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle:focus {
  outline: 2px solid #34C759;
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background-color: #1d1d1f;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

/* Animiertes Icon bei aktivem Menü */
.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Layout */
@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 15px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-menu li {
    padding: 6px 0;
  }

  .nav-menu a {
    display: block;
    padding: 6px 0;
  }

  /* Tracking-Button im Menü in voller Breite */
  .nav-menu .tracking-btn {
    width: 100%;
    text-align: center;
    margin-top: 4px;
  }

  /* Login-Button etwas größer und mit Text-Abstand */
  .nav-menu .login-btn {
    width: auto;
    height: auto;
    border-radius: 999px;
    padding: 8px 14px;
    margin-left: 0;
  }

  /* Sichtbares Menü wenn aktiv */
  .nav-menu.is-open {
    max-height: 400px; /* reicht für alle Einträge */
    opacity: 1;
    transform: translateY(0);
  }

  /* Desktop-Layout überschreiben */
  .nav-menu {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Optional: Desktop-Gap reduzieren auf kleineren Screens */
  .nav-menu {
    gap: 10px;
  }
}
/* === MOBILE FEINTUNING – ALLGEMEINE ANPASSUNGEN === */

/* 1) Sehr kleine Smartphones: etwas kleinere Schriften & mehr Luft */
@media (max-width: 480px) {
  body {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* Sektionen näher zusammen, aber nicht gequetscht */
  section.hero {
    min-height: 75vh;
  }

  .about,
  .services,
  .customers,
  .faq,
  .contact,
  .integration-section,
  .usp-section,
  .process-story {
    padding: 70px 0;
  }

  /* Karten innen etwas enger machen */
  .service-card,
  .contact-form,
  .contact-info,
  .review-card,
  .price-card,
  .integration-platforms,
  .legal-section {
    padding: 24px 18px;
  }

  /* Stats und Live-Stats: einspaltig und luftiger */
  .stats {
    flex-direction: column;
    gap: 16px;
  }

  .live-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* 2) Hero-Bilder: auf Mobile nicht zu hoch */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 480px;
  }

  /* Hero-Sektionen auf Logistik / Fulfillment */
  body.logistik-page section[style*="hero-logistik.jpg"],
  body.fulfillment-page section[style*="hero-fulfillment.jpg"] {
    padding-top: 140px !important;
    padding-bottom: 60px !important;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1.05rem;
  }
}

/* 3) Karten & Grids: Spalten brechen mobil sauber um */
@media (max-width: 768px) {
  /* Feature-Section Startseite */
  .feature-media img {
    height: 260px;
  }

  /* Fulfillment Bildkarten */
  .fulfillment-image-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-fulfillment-images .image-card {
    min-height: 220px;
  }

  /* USP-Karten */
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Kundenlogos */
  .customers-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
  }

  /* Legal-Text (Impressum/Datenschutz) */
  .legal-section {
    padding: 20px;
  }
}

/* 4) Kontaktbereiche: bessere Lesbarkeit auf schmalen Geräten */
@media (max-width: 768px) {
  .contact-content {
    gap: 30px;
  }

  .contact-info {
    padding: 22px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    font-size: 0.95rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* 5) Fulfillment-Prozess: Liste & Bild auf Mobile */
@media (max-width: 768px) {
  .process-layout {
    gap: 24px;
  }

  .step {
    padding: 18px 16px 18px 50px;
  }

  .process-media {
    min-height: 260px;
  }
}

/* 6) Logistik-Services: Listen etwas kompakter auf Handy */
@media (max-width: 768px) {
  .logistik-page .services .service-card {
    padding: 22px 18px;
  }

  .logistik-page .services .service-card ul li {
    font-size: 0.9rem;
  }
}
/* Inline-Status/Fehler für Kontaktformular */
.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  min-height: 1em;
}

.form-status--error {
  color: #FF3B30;
}

.form-status--success {
  color: #34C759;
}

/* Fehlerzustand für Felder */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #FF3B30;
}

.form-group-error-text {
  margin-top: 4px;
  font-size: 0.8rem;
  color: #FF3B30;
}
.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  min-height: 1em;
}

.form-status--error {
  color: #FF3B30;
}

.form-status--success {
  color: #34C759;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #FF3B30;
}

.form-group-error-text {
  margin-top: 4px;
  font-size: 0.8rem;
  color: #FF3B30;
}
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Checkbox-Einwilligung im Kontaktformular */
.form-group-checkbox label {
  margin-bottom: 6px;
}

.checkbox-inline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #1d1d1f;
}

.checkbox-inline input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #34C759;
  cursor: pointer;
}

.checkbox-inline span {
  line-height: 1.5;
}

/* Fehlerzustand auch für Checkbox */
.form-group.has-error .checkbox-inline input[type="checkbox"] {
  outline: 2px solid #FF3B30;
  outline-offset: 1px;
}
/* Honeypot-Feld: für Nutzer verstecken, für Bots sichtbar im HTML */
.form-group.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
}