/* ========================================
   Section: Technology / Foot Scan
   ======================================== */

.technology-section {
    padding: var(--section-padding) 20px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--large-margin);
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.tech-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(56, 118, 183, 0.15);
    background: linear-gradient(135deg, #e8f2fb 0%, #f0f6ff 100%);
}

.tech-image-wrap img,
.tech-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: contain;
}

.tech-image-placeholder {
    display: none;
    width: 100%;
    min-height: 420px;
    background: linear-gradient(135deg, #e8f0fe 0%, #c7d9f5 100%);
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--small-margin);
}

.tech-image-placeholder span { font-size: 5rem; }

.tech-image-placeholder p {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-primary);
    margin: 0;
}

.tech-badge {
    display: inline-block;
    background: rgba(56, 118, 183, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-primary);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--element-margin);
}

.tech-title {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: var(--element-margin);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.tech-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    font-family: var(--font-primary);
    margin-bottom: var(--section-margin);
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: var(--element-margin);
    margin-bottom: var(--section-margin);
}

.tech-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--element-margin);
    padding: var(--card-padding);
    background: #f7faff;
    border-radius: 12px;
    border: 1px solid rgba(56, 118, 183, 0.08);
    transition: all 0.3s ease;
}

.tech-feature-item:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(56, 118, 183, 0.1);
    transform: translateX(4px);
}

.tech-feature-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }

.tech-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.tech-feature-text p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    font-family: var(--font-primary);
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .tech-grid { grid-template-columns: 1fr; }
    .tech-image-placeholder { min-height: 280px; }
    .tech-title { font-size: 1.8rem; }
}

@media (max-width: 576px) {
    .technology-section { padding: var(--section-padding-mobile) 20px 0; }
    .tech-title { font-size: 1.6rem; }
}
