/* Industry gateway, landing pages, and app UI mockups */

/* --- Industry gateway cards --- */
.industry-gateway {
    padding: 40px var(--margin) 100px;
}

.industry-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 48px auto 0;
}

.industry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px 36px;
    border-radius: 24px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s var(--ease-antigravity), border-color 0.4s, box-shadow 0.4s;
    overflow: hidden;
}

body.light-mode .industry-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(50, 121, 249, 0.4);
    box-shadow: 0 20px 60px rgba(50, 121, 249, 0.12);
}

.industry-card-logistics::before,
.industry-card-construction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.industry-card-logistics::before {
    background: linear-gradient(90deg, #3279F9, #34A853);
}

.industry-card-construction::before {
    background: linear-gradient(90deg, #FBBC05, #EA4335);
}

.industry-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.industry-card-logistics .industry-card-icon {
    background: rgba(50, 121, 249, 0.15);
    color: #3279F9;
}

.industry-card-construction .industry-card-icon {
    background: rgba(251, 188, 5, 0.15);
    color: #F9A825;
}

.industry-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.75;
    margin-bottom: 24px;
    flex-grow: 1;
}

.industry-card-features {
    list-style: none;
    margin-bottom: 28px;
}

.industry-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 6px 0;
    opacity: 0.85;
}

.industry-card-features .material-symbols-outlined {
    font-size: 18px;
    color: #34A853;
}

.industry-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--palette-blue-600);
}

.industry-card:hover .industry-card-cta .material-symbols-outlined {
    transform: translateX(4px);
    transition: transform 0.3s var(--ease-antigravity);
}

/* --- Shared platform strip --- */
.shared-platform {
    padding: 80px var(--margin);
}

.shared-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.shared-item {
    padding: 28px 24px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body:not(.light-mode) .shared-item {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.shared-item .material-symbols-outlined {
    font-size: 28px;
    color: var(--palette-blue-600);
    margin-bottom: 16px;
}

.shared-item h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.shared-item p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.7;
}

/* --- Industry page hero badge --- */
.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
}

.industry-badge-logistics {
    background: rgba(50, 121, 249, 0.12);
    color: #3279F9;
}

.industry-badge-construction {
    background: rgba(251, 188, 5, 0.15);
    color: #E37400;
}

/* --- App screenshot / mock container --- */
.app-screenshot-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #F6F8FB;
}

.app-screenshot-wrap img.app-screenshot-img {
    display: block;
    width: 100%;
    height: auto;
}

.app-mock {
    display: flex;
    min-height: 320px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

.app-mock-sidebar {
    width: 180px;
    min-width: 180px;
    background: #fff;
    border-right: 1px solid #E8EAED;
    padding: 16px 0;
}

.app-mock-logo {
    padding: 0 16px 16px;
    font-weight: 700;
    font-size: 14px;
    color: #4F6EF7;
    border-bottom: 1px solid #E8EAED;
    margin-bottom: 8px;
}

.app-mock-nav-item {
    padding: 8px 16px;
    color: #5F6368;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-mock-nav-item.active {
    background: #EEF1FF;
    color: #4F6EF7;
    font-weight: 600;
    border-right: 3px solid #4F6EF7;
}

.app-mock-nav-item .material-symbols-outlined {
    font-size: 16px;
}

.app-mock-main {
    flex: 1;
    padding: 20px 24px;
    background: #F6F8FB;
    overflow: hidden;
}

.app-mock-header {
    margin-bottom: 16px;
}

.app-mock-title {
    font-size: 18px;
    font-weight: 600;
    color: #121317;
}

.app-mock-subtitle {
    font-size: 12px;
    color: #5F6368;
    margin-top: 4px;
}

.app-mock-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.app-mock-stat {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #E8EAED;
}

.app-mock-stat-label {
    font-size: 10px;
    color: #5F6368;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.app-mock-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #121317;
    margin-top: 4px;
}

.app-mock-table {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #E8EAED;
    overflow: hidden;
}

.app-mock-table-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 10px 14px;
    background: #F8F9FA;
    font-weight: 600;
    color: #5F6368;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.app-mock-table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 10px 14px;
    border-top: 1px solid #E8EAED;
    align-items: center;
}

.app-mock-blur {
    display: inline-block;
    background: linear-gradient(90deg, #DADCE0 0%, #E8EAED 50%, #DADCE0 100%);
    border-radius: 4px;
    height: 12px;
    width: 70%;
    filter: blur(2px);
}

.app-mock-blur.short { width: 40%; }
.app-mock-blur.medium { width: 55%; }

.app-mock-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
}

.app-mock-badge-green { background: #DCFCE7; color: #16A34A; }
.app-mock-badge-blue { background: #EEF1FF; color: #4F6EF7; }
.app-mock-badge-amber { background: #FEF3C7; color: #B45309; }

/* Screenshot with fallback */
.app-screenshot-wrap .app-mock-fallback {
    display: none;
}

.app-screenshot-wrap.no-image .app-screenshot-img {
    display: none;
}

.app-screenshot-wrap.no-image .app-mock-fallback {
    display: flex;
}

/* --- Industry feature filter tags --- */
.feature-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 8px;
    vertical-align: middle;
}

.feature-tag-logistics { background: #EEF1FF; color: #3279F9; }
.feature-tag-construction { background: #FEF3C7; color: #B45309; }
.feature-tag-both { background: #F1F3F4; color: #5F6368; }

/* --- Breadcrumb --- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .industry-cards {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .shared-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-mock-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-mock-sidebar {
        width: 56px;
        min-width: 56px;
    }

    .app-mock-logo,
    .app-mock-nav-item span:not(.material-symbols-outlined) {
        display: none;
    }

    .app-mock-nav-item {
        justify-content: center;
        padding: 10px;
    }
}

@media (max-width: 640px) {
    .shared-grid {
        grid-template-columns: 1fr;
    }

    .app-mock-stats {
        grid-template-columns: 1fr 1fr;
    }
}
