/* Solutions Page Hero */
.page-hero-solutions {
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, var(--global-palette1) 0%, var(--global-palette2) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.page-hero-solutions .page-hero-container {
    position: relative;
    z-index: 2;
}

.page-hero-solutions .breadcrumbs {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-solutions .breadcrumbs a {
    color: var(--global-palette3);
}

.page-hero-solutions .breadcrumbs span {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-solutions h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.page-hero-solutions .hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-features-mini {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}

.mini-icon {
    font-size: 20px;
}

@media (max-width: 768px) {
    .page-hero-solutions {
        padding: 120px 20px 60px;
    }
    
    .hero-features-mini {
        flex-direction: column;
        align-items: center;
    }
}

/* Services Detail Section */
.solutions-services-detail {
    padding: 80px 40px;
    background: #ffffff;
}

.services-detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid #e2e8f0;
}

.service-detail-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.right-layout {
    direction: ltr;
}

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 169, 97, 0.1);
    color: var(--global-palette3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features li {
    padding: 12px 0 12px 35px;
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: var(--global-palette3);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.service-brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-brands-list strong {
    color: var(--global-palette1);
    font-size: 14px;
    margin-right: 10px;
}

.service-brands-list span {
    padding: 6px 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    color: var(--global-palette1);
    font-weight: 500;
}

.service-detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    background: linear-gradient(135deg, var(--global-palette1) 0%, var(--global-palette2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .service-detail-block,
    .right-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .solutions-services-detail {
        padding: 60px 20px;
    }
    
    .service-detail-block {
        margin-bottom: 60px;
        padding-bottom: 60px;
    }
    
    .visual-placeholder {
        max-width: 300px;
        font-size: 80px;
    }
}

/* Control4 Platform Section */
.solutions-control4-platform {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.platform-container {
    max-width: 1400px;
    margin: 0 auto;
}

.platform-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.platform-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--global-palette1);
    margin: 16px 0 20px;
    line-height: 1.2;
}

.platform-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.platform-feature {
    padding: 40px 35px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.platform-feature:hover {
    border-color: var(--global-palette3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(201, 169, 97, 0.15);
    font-family: 'Space Grotesk', sans-serif;
}

.platform-feature h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 14px;
    padding-right: 60px;
}

.platform-feature p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.platform-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 60px;
    background: linear-gradient(135deg, var(--global-palette1) 0%, var(--global-palette2) 100%);
    border-radius: 16px;
    margin-top: 60px;
}

.cta-box-content h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-box-content p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-primary-large {
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .platform-features {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .platform-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .solutions-control4-platform {
        padding: 60px 20px;
    }
    
    .platform-features {
        grid-template-columns: 1fr;
    }
    
    .platform-cta-box {
        padding: 30px 20px;
    }
}

/* Solutions Final CTA */
.solutions-final-cta {
    padding: 100px 40px;
    background: #ffffff;
}

.final-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-wrapper h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content-wrapper > p {
    font-size: 19px;
    line-height: 1.7;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 60px;
}

.cta-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--global-palette3);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--global-palette3);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0 auto 16px;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

.process-arrow {
    font-size: 32px;
    color: var(--global-palette3);
    font-weight: 700;
    flex-shrink: 0;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-outline {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: var(--global-palette1);
    border: 2px solid var(--global-palette1);
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: var(--global-palette1);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .process-arrow {
        display: none;
    }
    
    .cta-process {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-step {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .solutions-final-cta {
        padding: 60px 20px;
    }
    
    .cta-process {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-group {
        flex-direction: column;
    }
    
    .cta-buttons-group a {
        width: 100%;
        text-align: center;
    }
}