.examples-nav {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #2a2a2a;
}

.highlight {
    color: #ff6b35;
}

.examples-nav .nav-links a:not(.btn) {
    color: #aaa;
    transition: color 0.2s;
}

.examples-nav .nav-links a:not(.btn):hover {
    color: #ff6b35;
}

.examples-hero {
    padding: 5rem 0 3rem;
    text-align: center;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f0f 100%);
}

.examples-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.15;
}

.examples-hero p {
    color: #999;
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.examples-filters {
    padding: 1.5rem 0;
    background: #0f0f0f;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 57px;
    z-index: 90;
}

.filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #333;
    border-radius: 100px;
    color: #888;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
}

.examples-grid-section {
    padding: 3rem 0 4rem;
    background: #0f0f0f;
    min-height: 400px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.example-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid #2a2a2a;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.example-card:hover {
    transform: translateY(-4px);
    border-color: #ff6b35;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.example-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.example-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.example-card:hover .example-card-image img {
    transform: scale(1.05);
}

.example-card-placeholder {
    background: linear-gradient(135deg, #1a1a2e, #2a2a3e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.example-card-placeholder svg {
    width: 48px;
    height: 48px;
    color: #ff6b35;
    opacity: 0.4;
}

.sector-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.example-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.example-sector {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.example-card-body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.3;
}

.example-tagline {
    color: #888;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.example-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.75rem;
    border-top: 1px solid #2a2a2a;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #666;
    font-size: 0.75rem;
}

.meta-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.examples-empty {
    text-align: center;
    padding: 4rem 0;
    color: #666;
    font-size: 1.125rem;
}

.examples-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    text-align: center;
}

.examples-cta h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.examples-cta h2 .highlight {
    color: #fff;
    text-decoration: underline;
}

.examples-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.examples-cta .btn-primary {
    background: white;
    color: #ff6b35;
}

.examples-cta .btn-primary:hover {
    background: #f5f5f5;
}

.examples-footer {
    background: #1a1a1a;
    padding: 3rem 0 2rem;
    border-top: 1px solid #2a2a2a;
}

.examples-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.examples-footer p {
    color: #666;
    font-size: 0.875rem;
}

.examples-footer .back-home {
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.examples-footer .back-home:hover {
    text-decoration: underline;
}

.casestudy-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f0f 100%);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #888;
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: #ff6b35;
}

.casestudy-hero-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.casestudy-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casestudy-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.casestudy-tagline {
    font-size: 1.25rem;
    color: #999;
    line-height: 1.6;
    max-width: 700px;
}

.casestudy-body {
    padding: 2rem 0 4rem;
    background: #0f0f0f;
}

.casestudy-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.casestudy-main {
    min-width: 0;
}

.casestudy-section {
    margin-bottom: 2.5rem;
}

.casestudy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.casestudy-section p {
    color: #aaa;
    line-height: 1.8;
    font-size: 1rem;
}

.casestudy-quote {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border-left: 3px solid #ff6b35;
}

.casestudy-quote blockquote {
    font-size: 1.125rem;
    color: #ddd;
    font-style: italic;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.casestudy-quote cite {
    color: #888;
    font-style: normal;
    font-size: 0.875rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.example-card-small {
    display: flex;
    flex-direction: column;
}

.example-card-small .example-card-image {
    display: none;
}

.example-card-small .example-card-body {
    padding: 1rem;
}

.example-card-small h3 {
    font-size: 1rem;
}

.casestudy-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.sidebar-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.quick-facts {
    display: flex;
    flex-direction: column;
}

.fact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #2a2a2a;
}

.fact:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fact:first-child {
    padding-top: 0;
}

.fact-label {
    color: #888;
    font-size: 0.875rem;
}

.fact-value {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: right;
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-list li {
    padding: 0.625rem 0 0.625rem 1.25rem;
    position: relative;
    color: #aaa;
    font-size: 0.875rem;
    border-bottom: 1px solid #222;
    line-height: 1.4;
}

.equipment-list li:last-child {
    border-bottom: none;
}

.equipment-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
}

.sidebar-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.04));
    border-color: rgba(255, 107, 53, 0.25);
    text-align: center;
}

.sidebar-cta p {
    color: #aaa;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.sidebar-cta .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 1024px) {
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .casestudy-layout {
        grid-template-columns: 1fr;
    }

    .casestudy-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1;
        min-width: 250px;
    }

    .sidebar-cta {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .examples-hero {
        padding: 3rem 0 2rem;
    }

    .examples-hero h1 {
        font-size: 2rem;
    }

    .examples-hero p {
        font-size: 1rem;
    }

    .examples-filters {
        top: 52px;
        padding: 1rem 0;
    }

    .examples-grid {
        grid-template-columns: 1fr;
    }

    .examples-cta {
        padding: 3rem 0;
    }

    .examples-cta h2 {
        font-size: 1.75rem;
    }

    .casestudy-hero {
        padding: 2.5rem 0 1.5rem;
    }

    .casestudy-hero-content h1 {
        font-size: 1.75rem;
    }

    .casestudy-tagline {
        font-size: 1rem;
    }

    .casestudy-section h2 {
        font-size: 1.25rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .casestudy-sidebar {
        flex-direction: column;
    }

    .sidebar-card {
        min-width: auto;
        width: 100%;
    }

    .examples-footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .examples-hero h1 {
        font-size: 1.625rem;
    }

    .filter-bar {
        gap: 0.375rem;
    }

    .filter-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .example-card-image {
        height: 160px;
    }

    .example-card-body {
        padding: 1rem;
    }

    .example-card-body h3 {
        font-size: 1rem;
    }

    .examples-cta h2 {
        font-size: 1.5rem;
    }

    .casestudy-hero-content h1 {
        font-size: 1.5rem;
    }
}
