
        /* Isolated container – no external influence */
        .pcba-showcase-tech {
            display: block;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 15px;
            font-weight: 400;
            line-height: 1.55;
            color: #1e1e2a;
            background-color: #ffffff;
            box-sizing: border-box;
            padding: 1.8rem 1.5rem;
            --theme-magenta: #c724b1;
            --border-light: #e2e2ea;
            --bg-offwhite: #f6f6fa;
        }

        .pcba-showcase-tech *,
        .pcba-showcase-tech *::before,
        .pcba-showcase-tech *::after {
            box-sizing: inherit;
        }

        /* Typography – technical, clean */
        .pcba-showcase-tech h2 {
            font-size: 1.9rem;
            font-weight: 650;
            line-height: 1.2;
            border-left: 5px solid var(--theme-magenta);
            padding-left: 1.2rem;
            margin: 0 0 1.5rem 0;
            color: #0f0f1a;
        }

        .pcba-showcase-tech h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 1.8rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 2px solid var(--theme-magenta);
            color: #1c1c2a;
        }

        .pcba-showcase-tech h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 0.6rem 0;
            color: #252537;
        }

        /* Grid – restrained, technical */
        .pcba-showcase-tech .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            align-items: stretch;
        }

        .pcba-showcase-tech .grid-2-special {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 1.5rem;
        }

        /* Cards – minimal, no icons */
        .pcba-showcase-tech .card {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 1.4rem 1.4rem 1.6rem;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        /* Image containers – properly sized, no cropping */
        .pcba-showcase-tech .img-container {
            width: 100%;
            max-width: 100%;
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #efeff4;
            background: #fafafc;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .pcba-showcase-tech .img-container img {
            display: block;
            width: 100%;
            height: auto;
            max-width: 100%;
            object-fit: contain;
            aspect-ratio: auto;
        }

        /* Mold banner – properly scaled */
        .pcba-showcase-tech .mold-banner {
            margin: 1.8rem 0 1.2rem;
            border-radius: 18px;
            overflow: hidden;
            border: 2px solid var(--theme-magenta);
            background: #0a0a12;
            display: flex;
            justify-content: center;
        }

        .pcba-showcase-tech .mold-banner img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: contain;
            max-width: 100%;
        }

        /* No decorative dots, no icons – pure technical text */
        .pcba-showcase-tech ul {
            padding-left: 0;
            list-style: none;
            margin: 0.5rem 0 0 0;
        }

        .pcba-showcase-tech li {
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            position: relative;
            color: #2e2e3c;
            font-size: 0.95rem;
        }

        .pcba-showcase-tech li::before {
            content: "—";
            color: var(--theme-magenta);
            position: absolute;
            left: 0;
            font-weight: 500;
        }

        /* Alloy section – clean technical block */
        .pcba-showcase-tech .alloy-block {
            background: #f8f8fd;
            border-left: 5px solid var(--theme-magenta);
            padding: 1.4rem 1.6rem;
            border-radius: 12px;
            margin: 1.2rem 0;
        }

        /* Slogan – simplified, technical tone */
        .pcba-showcase-tech .slogan-tech {
            background: #f3f1fa;
            border: 1px solid var(--theme-magenta);
            border-radius: 28px;
            padding: 1rem 1.8rem;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 500;
            color: #1a1a28;
            margin: 1.8rem 0;
            letter-spacing: -0.01em;
        }

        .pcba-showcase-tech .slogan-tech span {
            background: var(--theme-magenta);
            color: white;
            padding: 0.15rem 0.9rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-left: 0.8rem;
            display: inline-block;
            letter-spacing: 0.5px;
        }

        /* Certification link – clean button */
        .pcba-showcase-tech .cert-link {
            display: inline-block;
            background-color: var(--theme-magenta);
            color: white;
            font-weight: 600;
            padding: 0.65rem 1.8rem;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.95rem;
            border: 1px solid var(--theme-magenta);
            transition: none;
        }

        .pcba-showcase-tech .cert-link:hover {
            background-color: white;
            color: var(--theme-magenta);
            text-decoration: none;
        }

        /* No footer, no closing tagline – removed as requested */
        .pcba-showcase-tech hr {
            margin: 1.8rem 0 0.5rem;
            border: 0;
            border-top: 1px solid #dedee8;
        }

        /* Responsive */
        @media (max-width: 850px) {
            .pcba-showcase-tech .grid-2,
            .pcba-showcase-tech .grid-2-special {
                grid-template-columns: 1fr;
            }
            .pcba-showcase-tech h2 {
                font-size: 1.7rem;
            }
        }
    