/* ===== TECH PRODUCT PAGE ===== */
.tech-page {
    direction: rtl;
    background: #f9fafb;
}

/* Back Link Bar */
.tech-back-bar {
    background: #fff;
    border-bottom: 1px solid var(--color-gray-300);
    padding: 16px 0;
}

.tech-back-bar .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tech-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.tech-back-link:hover {
    color: var(--color-teal);
}

.tech-back-link svg {
    width: 16px;
    height: 16px;
}

/* Hero */
.tech-page-hero {
    padding: 64px 0 48px;
    text-align: center;
    background: #f9fafb;
}

.tech-page-hero__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.tech-page-hero__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-page-hero__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 8px;
    font-family: 'Rubik', sans-serif;
}

.tech-page-hero__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    font-family: 'Heebo', sans-serif;
}

/* Story / Why Section */
.tech-story-card {
    background: #fff;
    border: 1px solid var(--color-gray-300);
    border-radius: 16px;
    padding: 32px 40px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.tech-story-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.tech-story-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading);
    font-family: 'Rubik', sans-serif;
}

.tech-story-card__text {
    font-size: 15px;
    line-height: 28px;
    color: var(--color-text);
    font-family: 'Heebo', sans-serif;
    text-align: right;
}

/* Engineering Section */
.tech-engineering-card {
    background: linear-gradient(to right, #1A2332 0%, #243044 100%);
    border-radius: 16px;
    padding: 32px 40px;
    margin-bottom: 48px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 4px 20px rgba(0, 0, 0, 0.15);
}

.tech-engineering-card__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 10px;
    margin-bottom: 16px;
}

.tech-engineering-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-family: 'Rubik', sans-serif;
}

.tech-engineering-card__icon {
    width: 24px;
    height: 24px;
    color: rgba(255,255,255,0.8);
}

.tech-engineering-card__text {
    font-size: 15px;
    line-height: 28px;
    color: rgba(255,255,255,0.95);
    font-family: 'Heebo', sans-serif;
    text-align: right;
}

/* Features Section */
.tech-features {
    padding: 0 0 48px;
}

.tech-features__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 24px;
    font-family: 'Rubik', sans-serif;
}

.tech-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--color-gray-300);
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.tech-feature-item:hover {
    box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
}

.tech-feature-item__text {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    font-family: 'Heebo', sans-serif;
}

.tech-feature-item__check {
    width: 28px;
    height: 28px;
    background: linear-gradient(to bottom, #4aacb7, #7ab51d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-feature-item__check svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
}

/* CTA Section */
.tech-page-cta {
    padding: 0 0 80px;
}

.tech-page-cta__box {
    background: linear-gradient(to bottom, #4aacb7 0%, #7ab51d 100%);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-page-cta__title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Rubik', sans-serif;
}

.tech-page-cta__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    font-family: 'Heebo', sans-serif;
}

.tech-page-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #fff;
    border-radius: 9999px;
    color: #1e2939;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tech-page-cta__btn:hover,
.tech-page-cta__btn:active {
    transform: scale(1.08);
    box-shadow: 0px 14px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .tech-page-hero {
        padding: 40px 0 32px;
    }

    .tech-page-hero__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .tech-page-hero__title {
        font-size: 22px;
    }

    .tech-page-hero__subtitle {
        font-size: 14px;
    }

    .tech-story-card,
    .tech-engineering-card {
        padding: 20px;
    }

    .tech-story-card__title,
    .tech-engineering-card__title {
        font-size: 16px;
    }

    .tech-story-card__text,
    .tech-engineering-card__text {
        font-size: 13px;
        line-height: 24px;
    }

    .tech-features__title {
        font-size: 18px;
    }

    .tech-feature-item {
        padding: 14px 18px;
    }

    .tech-feature-item__text {
        font-size: 13px;
    }

    .tech-feature-item__check {
        width: 24px;
        height: 24px;
    }

    .tech-feature-item__check svg {
        width: 12px;
        height: 12px;
    }

    .tech-page-cta__box {
        padding: 32px 20px;
        border-radius: 12px;
    }

    .tech-page-cta__title {
        font-size: 18px;
    }

    .tech-page-cta__subtitle {
        font-size: 14px;
    }

    .tech-page-cta__btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 416px) {
    .tech-page {
        max-width: 416px;
        margin: 0 auto;
    }
}
