/**
 * Software Integraties Page - Premium Integration Services Design
 * Following the proven pattern from previous successful diensten pages
 */

/* ============================================
   RESET AND BASE
   ============================================ */
.page-id-555 * {
    box-sizing: border-box;
}

/* ============================================
   HERO SECTION - BLUE GRADIENT
   ============================================ */
.page-id-555 .software-hero-section {
    background: linear-gradient(135deg, #5DADE2 0%, #3498DB 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
    padding: 60px 20px 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    border-radius: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.page-id-555 .software-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.page-id-555 .software-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.page-id-555 .hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-id-555 .hero-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-id-555 .hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.page-id-555 .hero-trust-points {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 25px auto 0;
    padding: 0;
    list-style: none;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

.page-id-555 .hero-trust-points li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.page-id-555 .software-stats-section {
    padding: 60px 20px;
    background: #F8F9FA;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
}

.page-id-555 .stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-id-555 .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.page-id-555 .stat-card {
    text-align: center;
    padding: 35px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.page-id-555 .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.page-id-555 .stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #5DADE2, #3498DB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.page-id-555 .stat-label {
    font-size: 16px;
    color: #5A6C7D;
}

.page-id-555 .stat-description {
    font-size: 14px;
    color: #7F8C8D;
    margin-top: 8px;
}

.page-id-555 .stat-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.page-id-555 .software-features-section {
    padding: 80px 20px;
    background: white;
    width: 100%;
    margin: 0;
}

.page-id-555 .features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-id-555 .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-id-555 .feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid #ECF0F1;
}

.page-id-555 .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: #5DADE2;
}

.page-id-555 .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 35px;
}

.page-id-555 .feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.page-id-555 .feature-card p {
    font-size: 16px;
    color: #5A6C7D;
    line-height: 1.6;
}

.page-id-555 .feature-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-id-555 .feature-card li {
    padding: 8px 0;
    color: #5A6C7D;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.page-id-555 .process-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2C3E50, #34495E);
    width: 100%;
    margin: 0;
}

.page-id-555 .process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-id-555 .process-section h2,
.page-id-555 .process-section h3,
.page-id-555 .process-section p {
    color: white;
}

.page-id-555 .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.page-id-555 .process-step {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.page-id-555 .process-step:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.page-id-555 .step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(135deg, #5DADE2, #3498DB);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.page-id-555 .benefits-section {
    padding: 80px 20px;
    background: #F8F9FA;
    width: 100%;
    margin: 0;
}

.page-id-555 .benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-id-555 .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.page-id-555 .benefit-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.page-id-555 .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.page-id-555 .benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    background: linear-gradient(135deg, #5DADE2, #3498DB);
}

/* ============================================
   CTA SECTION
   ============================================ */
.page-id-555 .cta-section {
    background: linear-gradient(135deg, #5DADE2 0%, #3498DB 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.page-id-555 .cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-id-555 .cta-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    color: white;
}

.page-id-555 .cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: white;
}

.page-id-555 .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-id-555 .section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #5A6C7D;
    max-width: 720px;
    margin: 16px auto 0;
}

.page-id-555 .section-header.light .section-subtitle {
    color: rgba(255,255,255,0.75);
}

/* ============================================
   CONTAINER FIXES - CRITICAL
   ============================================ */
.page-id-555 #content.site-content {
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
}

.page-id-555 .site-content .ast-container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.page-id-555 #main,
.page-id-555 article,
.page-id-555 .entry-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.page-id-555 .entry-content > * {
    margin-left: 0;
    margin-right: 0;
}

.page-id-555 .wp-block-group.has-background {
    width: 100%;
    padding: 80px 20px;
    margin: 0;
}

.page-id-555 .wp-block-group:not(.has-background) {
    width: 100%;
    padding: 60px 20px;
    margin: 0;
}

.page-id-555 .wp-block-columns,
.page-id-555 .wp-block-group > h2,
.page-id-555 .wp-block-group > h3,
.page-id-555 .wp-block-group > p,
.page-id-555 .wp-block-html:not(.software-hero-section) {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .page-id-555 .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-id-555 .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-id-555 .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-id-555 .software-hero-section {
        padding: 50px 20px 40px;
        min-height: auto;
    }

    .page-id-555 .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-id-555 .features-grid {
        grid-template-columns: 1fr;
    }

    .page-id-555 .process-steps {
        grid-template-columns: 1fr;
    }

    .page-id-555 .benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-id-555 .wp-block-group.has-background {
        padding: 60px 20px;
    }

    .page-id-555 .wp-block-group:not(.has-background) {
        padding: 40px 20px;
    }

    .page-id-555 .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 0 18px;
        gap: 12px;
    }

    .page-id-555 .hero-btn {
        width: 100%;
        padding: 16px 24px;
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(52,152,219,0.25);
    }

    .page-id-555 .hero-trust-points {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        max-width: 320px;
        margin: 24px auto 0;
    }

    .page-id-555 .lead-form-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-id-555 .lead-form-content {
        text-align: center;
    }

    .page-id-555 .lead-form-highlights {
        justify-items: center;
    }
}

/* ============================================
   TYPOGRAPHY CONSISTENCY
   ============================================ */
.page-id-555 h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    text-align: center;
}

.page-id-555 h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.page-id-555 p {
    font-size: 18px;
    line-height: 1.6;
    color: #5A6C7D;
}

/* ============================================
   BUTTONS CONSISTENCY
   ============================================ */
.page-id-555 .hero-btn,
.page-id-555 .wp-block-button__link {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.page-id-555 .hero-btn-primary {
    background: white;
    color: #3498DB;
}

.page-id-555 .hero-btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.page-id-555 .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(52,152,219,0.3);
}

/* CTA buttons specific fixes */
.page-id-555 .cta-section .wp-block-button__link {
    color: #FFFFFF !important;
}

.page-id-555 .cta-section .wp-block-button__link:first-of-type {
    background: #FFFFFF !important;
    color: #3498DB !important;
}

.page-id-555 .cta-section .wp-block-button__link[href^="tel"] {
    background: transparent !important;
    border: 2px solid #FFFFFF !important;
    color: #FFFFFF !important;
}

.page-id-555 .cta-section .wp-block-button__link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Hero buttons */
.page-id-555 .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 10px;
    max-width: 520px;
}

.page-id-555 .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   LEAD FORM / CONTACT SECTION
   ============================================ */
.page-id-555 .lead-form-section {
    background: #FFFFFF;
    padding: 80px 20px 100px;
}

.page-id-555 .lead-form-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.page-id-555 .lead-form-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
    color: #2C3E50;
}

.page-id-555 .lead-form-content p {
    color: #5A6C7D;
    margin-bottom: 24px;
    line-height: 1.6;
}

.page-id-555 .lead-form-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    color: #2C3E50;
    font-weight: 600;
}

.page-id-555 .lead-form-wrapper {
    display: flex;
    justify-content: center;
}

.page-id-555 .lead-form-card {
    background: linear-gradient(135deg, #5DADE2 0%, #3498DB 100%);
    color: #FFFFFF;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 20px 40px rgba(52,152,219,0.25);
    text-align: center;
    width: 100%;
    max-width: 420px;
}

.page-id-555 .lead-form-card h3 {
    color: #FFFFFF;
    margin-bottom: 8px;
}

.page-id-555 .lead-form-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 18px;
}

.page-id-555 .lead-form-phone,
.page-id-555 .lead-form-email {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 12px;
}

.page-id-555 .lead-form-disclaimer {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-top: 20px;
}

.page-id-555 .lead-form-disclaimer a {
    color: #FFFFFF;
    text-decoration: underline;
}
