/* Integrations Page Specific CSS */

.integration-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(5, 10, 20, 1) 0%, rgba(15, 25, 40, 1) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.integration-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(50, 140, 193, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.integration-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(50, 140, 193, 0.2);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(50, 140, 193, 0.4);
}

.integration-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #b3e5fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.integration-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #a0b2c6;
    line-height: 1.6;
}

.integration-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.integration-dark {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #062235 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.section-title.text-white {
    color: #ffffff;
}

/* Protocols */
.protocol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.protocol-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    color: var(--text-main);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.protocol-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(50, 140, 193, 0.15);
    color: var(--secondary-color);
}

/* PLC */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.vendor-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    color: #eaf4ff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vendor-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

/* CNC */
.cnc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cnc-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    color: var(--text-main);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cnc-card:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Robots */
.bg-light-alt {
    background: var(--card-bg); /* slightly different background if needed */
}

.robot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.robot-card {
    background: var(--bg-color);
    border: 1px solid var(--card-border);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.robot-card:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Enterprise */
.enterprise-connect {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    position: relative;
}

.enterprise-system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.enterprise-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.enterprise-card i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.enterprise-card:hover {
    background: rgba(50, 140, 193, 0.2);
    border-color: rgba(50, 140, 193, 0.4);
    transform: translateY(-5px);
}

.cta-section {
    padding: 80px 0 100px;
    background: var(--bg-color);
}

@media (max-width: 575.98px) {
    .integration-hero h1 { font-size: 2.25rem; }
}
