:root {

    /* Brand */

    --accent: #F7931A;

    --accent-hover: #FFAA33;

    --accent-dark: #D97706;

    /* Dark */
    --charcoal: #232323;
    --charcoal-2: #2E2E2E;
    --charcoal-3: #3A3A3A;

    /* Light */
    --white: #FFFFFF;
    --off-white: #F7F7F7;

    /* Text */
    --text: #202020;
    --text-muted: #666666;
    --text-muted-light: #b6b6b6;
    --text-light: #F2F2F2;

    /* Borders */
    --border: #E4E4E4;

    /* Shadows */
    --shadow:
        0 12px 40px rgba(0, 0, 0, 0.08);

    --container: 1200px;

    --text-main: #202020;
    --bg-dark: #232323;
    --bg-dark-2: #2e2e2e;

    /* Universal Design Token Scale */
    --font-primary: "Montserrat", sans-serif;
    
    /* Strict Hierarchy Scale */
    --fs-h1: clamp(3.5rem, 6vw, 6rem);
    --fs-h2: clamp(2.2rem, 4vw, 3.2rem);
    --fs-h3: clamp(1.5rem, 2.5vw, 1.8rem);
    --fs-h4: clamp(1.1rem, 1.8vw, 1.3rem);
    --fs-body: 0.95rem;
    --fs-nav: 0.9rem;
    --fs-tag: 0.8rem;
    --fs-ultratag: 2rem;
    /* Semantic Weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--off-white);
    color: var(--text);
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Enforce proportional heading balances */
h1 { font-size: var(--fs-h1); font-weight: var(--fw-bold); line-height: 1.1; }
h2 { font-size: var(--fs-h2); font-weight: var(--fw-bold); line-height: 1.2; }
h3 { font-size: var(--fs-h3); font-weight: var(--fw-semibold); }
h4 { font-size: var(--fs-h4); font-weight: var(--fw-semibold); }

html {
    scroll-behavior: smooth;
}
.container {
    width: min(1400px, 92%);
    margin: auto;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--border);

    transition: .3s;
}

.card:hover {
    transform: translateY(-8px);

    border-color: var(--accent);

    box-shadow: var(--shadow);
}


.hero {
    position: relative;

    width: 100%;
    height: 100vh;

    overflow: hidden;

    background: #111;
}

.hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .45) 0%,
            rgba(0, 0, 0, .20) 40%,
            rgba(0, 0, 0, .05) 100%);

    z-index: 2;
}

.hero-content {
    position: relative;

    z-index: 3;

    width: min(1200px, 92%);
    height: 100%;

    margin: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: white;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);

    font-weight: 600;
    line-height: 1.05;
    padding-bottom: 24px;
}

.hero-title {

    font-size: clamp(5rem, 8vw, 8rem);

    font-weight: 700;

    line-height: .92;

    letter-spacing: -0.04em;
}

.hero-content p {

    max-width: 720px;

    font-size: 1.2rem;

    color: rgba(255, 255, 255, .85);

    margin-top: 16px;
}

.usecase-wrapper {
    min-height: 90px;

    display: flex;
    align-items: center;
}

#usecaseText {
    color: var(--accent);

    font-size: clamp(2rem, 4vw, 3.5rem);

    font-weight: 600;
}

.hero-actions {
    display: flex;

    gap: 16px;

    margin-top: 32px;
}

.btn-primary {

    background: var(--accent);

    color: #111;

    padding: 15px 32px;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s ease;
}

.btn-primary:hover {

    transform: translateY(-2px);

    background: var(--accent-hover);
}

.btn-secondary {

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .25);

    color: white;

    padding: 15px 32px;

    border-radius: 12px;

    backdrop-filter: blur(12px);

    transition: .3s ease;
}

.btn-secondary:hover {

    background: rgba(255, 255, 255, .14);
}

/* ===================================
   DENICS GLASS CARDS
   =================================== */

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

/* Parent section */
.capabilities-section {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f5f5f5 100%);
    overflow: hidden;
}

/* Optional engineering texture */
.capabilities-section::before {

    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(0, 0, 0, .015) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(0, 0, 0, .015) 1px,
            transparent 1px);

    background-size: 40px 40px;

    pointer-events: none;
}

/* Card */
.capability-card {

    background: #ffffff;

    padding: 48px;

    border-radius: 18px;

    border: 1px solid #e8e8e8;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

    position: relative;

    overflow: hidden;
}

.capability-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 30px;
    bottom: 30px;

    width: 4px;

    background: var(--accent);
}

.capability-card:hover {

    transform: translateY(-8px);

    border-color: var(--accent);

    box-shadow:
        0 16px 40px rgba(0, 0, 0, .08);
}

.capability-card h3 {

    font-size: 1.5rem;
}

/* ===================================
   ENGINEERING STACK
   =================================== */

.stack-section {

    background: var(--bg-dark);

    color: white;

    padding: 140px 0;
}

.stack-header {

    max-width: 760px;

    margin-bottom: 70px;
}

.stack-header h2 {

    color: white;

    margin-bottom: 20px;
}

.stack-header p {

    color: rgba(255, 255, 255, .75);
}

.stack {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

/* ===================================
   INDUSTRIES
   =================================== */

.industries-section {

    padding: 140px 0;

    background: #ffffff;
}

.industry-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.industry-card.large {

    background:
        linear-gradient(135deg,
            #2b2b2b,
            #3c3c3c);

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #e8e8e8;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.industry-card.large:hover {

    transform: translateY(-8px);

    border-color: var(--accent);

    box-shadow:
        0 16px 40px rgba(0, 0, 0, .08);
}

.industry-card.large img {

    width: 100%;
    height: 260px;

    object-fit: cover;

    display: block;
}

.industry-card.large:hover img {

    transform: scale(1.05);
}

.industry-overlay {

    position: relative;

    background: white;

    padding: 28px;

    inset: unset;
}

.industry-overlay h3 {

    color: var(--text-main);

    margin-bottom: 10px;
}

.industry-overlay p {

    color: var(--text-muted);
}

.industry-overlay {

    border-left: 4px solid var(--accent);
}

.industry-card:not(.large) {

    background: #f8f8f8;

    border: 1px solid #e7e7e7;

    border-radius: 18px;

    padding: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 140px;

    transition: .3s ease;
}

.industry-card:not(.large):hover {

    border-color: var(--accent);

    transform: translateY(-4px);
}

@media (max-width: 900px) {

    .industry-grid {

        grid-template-columns: 1fr;
    }

    .industry-card.large {

        height: 300px;
    }
}

.section-header {

    max-width: 820px;

    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    font-size: var(--fs-tag);
    font-weight: var(--fw-bold);
    letter-spacing: .2em; /* Enhanced tracking for premium look */
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    max-width: 720px;
    color: var(--text-muted);
    line-height: 1.7;
}

.section-header h2 {

    font-size:
        clamp(2.2rem, 4vw, 4rem);

    line-height: 1.05;

    margin-bottom: 22px;

    color: var(--text-main);
}


.programs-section {

    padding: 160px 0;

    background:
        linear-gradient(180deg,
            #232323 0%,
            #2f2f2f 100%);

    color: white;
}
.programs-section .container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.programs-section .section-header h2 {
    color: white;
}

.programs-section .section-header p {
    color: rgba(255, 255, 255, .75);
}

.program-list {

    display: flex;

    flex-direction: column;

    gap: 32px;
}

.program-item {

    display: flex;

    

    min-height: 200px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(10px);

    position: relative;

    border-radius: 24px;

    overflow: hidden;
 align-items: stretch;


    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}
.program-image {
    flex: 0 0 45%;
}

.program-content {
    flex: 0 0 55%;
}
.program-item::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;


}

.program-item:hover {

    transform: translateY(-2px);

    border-color: rgba(247,147,26,.25);

    box-shadow:
        0 24px 60px rgba(0,0,0,.18);
}

.program-item:nth-child(even) .program-image {

    order: 2;
}

.program-item:nth-child(even) .program-content {

    order: 1;
}

.program-image {

    overflow: hidden;

    position: relative;
}

.program-image img {

    height: 100%;
    object-fit: cover;
    
    transition: transform .8s ease;
}

.program-item:hover img {

    transform: scale(1.03);
}

.program-content {



    padding: 40px 56px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 620px;


}

.program-category {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--accent);

    font-size: .78rem;

    font-weight: 700;

    letter-spacing: .22em;

    text-transform: uppercase;

}

.program-content h3 {

     font-size: clamp(1.6rem,2vw,2.4rem);

    line-height: 1.05;

    margin-bottom: 20px;

    color: white;


}
.program-description {

    font-size: 1.05rem;

    line-height: 1.8;

    color: rgba(255,255,255,.75);

    max-width: 520px;

    margin-bottom: 42px;
}

.program-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 28px;
}

.program-meta-item {

    display: flex;
    flex-direction: column;

    gap: 6px;
}

.program-meta-label {

    font-size: .72rem;

    text-transform: uppercase;

    letter-spacing: .18em;

    color: rgba(255,255,255,.35);
}

.program-meta-value {

    font-size: .95rem;

    color: rgba(255,255,255,.9);

    font-weight: 500;
}


.program-story {


display: flex;
flex-direction: column;

gap: 24px;


}

.story-block {


padding-left: 20px;

border-left: 2px solid rgba(247,147,26,.25);


}

.story-label {


display: block;

font-size: .75rem;

text-transform: uppercase;

letter-spacing: .12em;

color: var(--accent);

margin-bottom: 8px;


}

.story-block p {


margin: 0;

color: rgba(255,255,255,.78);

line-height: 1.7;


}

.program-tags {


margin-top: 36px;

display: flex;
flex-wrap: wrap;

gap: 10px;


}

.program-tags span {


padding: 8px 14px;

border-radius: 999px;

background: rgba(255,255,255,.05);

border: 1px solid rgba(255,255,255,.08);

font-size: .8rem;


}


@media(max-width:900px) {

    .program-item {

        grid-template-columns: 1fr;
    }

    .program-item:nth-child(even) .program-image,
    .program-item:nth-child(even) .program-content {

        order: unset;
    }
}

.why-section {

    padding: 140px 0;

    background: white;
}

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;
}

.why-card {

    padding: 40px;

    background: white;

    border-left: 4px solid var(--accent);

    border-radius: 0;

    border-top: none;

    border-bottom: 1px solid #e8e8e8;

    transition:
        transform .3s ease,
        background .3s ease;
}

.why-card:hover {

    transform: translateX(8px);

    background: #fafafa;
}

.why-number {

    font-size: 1rem;

    color: var(--accent);

    font-weight: 700;

    letter-spacing: .15em;

    margin-bottom: 16px;
}

@media(max-width:900px) {

    .why-grid {

        grid-template-columns: 1fr;
    }
}

.final-cta {

    background: var(--accent);

    padding: 140px 0;

    text-align: center;
}

.final-cta h2 {

    font-size:
        clamp(4rem, 7vw, 7rem);

    color: white;
    padding: 180px 0;
    margin-bottom: 20px;
}

.final-cta p {

    color: rgba(255, 255, 255, .9);

    font-size: 1.3rem;

    margin-bottom: 36px;
}

.btn-secondary-dark {

    background: rgba(0, 0, 0, .12);

    color: white;

    border: 1px solid rgba(255, 255, 255, .3);

    padding: 15px 32px;

    border-radius: 12px;

    text-decoration: none;
}

.footer-cta {

    margin-top: 120px;
    padding: 70px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    background: linear-gradient(90deg, #ff8c00, #ffb347);

    backdrop-filter: blur(10px);
}

.footer-legal{

    margin-top: 10px;
    padding-bottom: 30px;
    
  

    
    border-bottom: 1px solid var(--charcoal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;

    font-size: 0.9rem;
    opacity: 0.6;
    
}


.cta-content {

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    background:
        linear-gradient(135deg,
            rgba(255, 140, 0, 0.06),
            rgba(255, 255, 255, 0.02));

}

.cta-label {

    color: #ff8c00;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.cta-text h2 {

    margin: 12px 0;
    font-size: 3rem;
    line-height: 1.1;


}

.cta-text p {

    max-width: 600px;
    opacity: 0.75;
    line-height: 1.8;
}

.cta-button {

    display: inline-flex;
    align-items: center;

    padding: 18px 32px;

    border: 1px solid #ff8c00;
    border-radius: 14px;

    color: #fff;
    text-decoration: none;

    transition: 0.3s ease;
}

.cta-button:hover {

    background: #ff8c00;
    color: #000;
}

.footer {

    margin-top: 80px;
    padding: 80px 0 30px;
    margin-left: 120px;
    margin-right: 120px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

}

.footer-grid {

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;

    gap: 80px;
}

.footer h3 {

    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer p {

    opacity: 0.7;
    line-height: 1.8;
}

.footer h4 {

    margin-bottom: 20px;
    color: #ff8c00;
}

.footer a {

    display: block;
    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;

    transition: 0.2s ease;
}

.footer a:hover {

    color: #fff;
}
.footer-brand h2{
    margin-top: 48px;
    margin-bottom: 48px;
}
.footer-bottom {

    margin-top: 60px;
    padding-top: 30px;

    border-top: 1px solid var(--charcoal);
    
    display: flex;
    flex-direction: column;
    

    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-logo {
    height: 64px;
    width: auto;
    margin: 80px;
    display: block;

    transition: .3s ease;
}

.cta-tagline {
    margin-top: 24px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--off-white);
}

.btn-secondary-dark:hover {
    z-index: 3;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.2s ease;

}

.footer-links a:hover {
    color: var(--text);
    text-decoration: underline;
    transition: 0.2s ease;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-contact a:hover {
    color: var(--text);
    text-decoration: underline;
    transition: 0.2s ease;
}

.footer-socials {

    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);

    color: white;
    text-decoration: none;

    transition: all 0.25s ease;

    position: relative;
}

.social-btn i {

    font-size: 1.75rem;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    line-height: 1;
}

.social-btn:hover {

    transform: translateY(-3px);

    z-index: 100;

    box-shadow:
        0 0 15px color-mix(in srgb, var(--accent) 70%, transparent),
        0 0 35px color-mix(in srgb, var(--accent) 50%, transparent),
        0 0 70px color-mix(in srgb, var(--accent) 25%, transparent);
}




/* ! Reset */
/* body, html{ font-family: 'Intro', Arial, Helvetica, sans-serif; font-size: 16px; box-sizing: border-box;margin: 0;padding: 0;}*,*:before,*:after{ box-sizing: border-box; }h1,h2,h3,h4,h5,h6, p, ol, ul{margin: 0;padding: 0;}ol,ul{list-style-type: none;}img{height: auto;}h1{font-size: 4rem;} h2{font-size: 3rem;} h3{font-size: 2rem;} h4{font-size: 1rem;} h5{font-size: 0.8rem;} h6{font-size: 0.6rem;}a{text-decoration:none}

body {
    background-color: #eeeeea;
} */

.process-layout {


    display: flex;
    align-items: center;

    gap: 40px;

    min-height: 600px;


}

.process-layout .section-header {

    flex: 0 0 500px;

    max-width: 500px;

    margin-bottom: 0;
}

.wrapper {


    flex: 1;

    display: flex;
    align-items: center;
    justify-content: flex-start;


}

.process-cards {


    display: flex;
    flex-wrap: nowrap;


}

.ultracard {


    width: 75px;
    height: 540px;

    border-radius: 24px;

    margin: 0 10px;

    display: flex;
    align-items: flex-end;

    overflow: visible;

    cursor: pointer;
    position: relative;
    transition: .6s cubic-bezier(.28, -0.03, 0, .99);

    background:
        linear-gradient(135deg,
            #232323,
            #2f2f2f);

    box-shadow:
        0 10px 30px -5px rgba(0, 0, 0, .25);
    /* background:
        linear-gradient(135deg,
            #232323 0%,
            #2f2f2f 100%); */


}

.ultracard > .row {
    color: white;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end; 
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* Checked State Dynamic Resets */
input:checked + .ultracard .icon {
    background: rgba(255, 255, 255, .08);
    color: white;
    writing-mode: initial;
    transform: none;
    letter-spacing: 0;
    
    width: 75px; /* Lock bounding diameter to base card widths */
    height: auto; 
    
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Collapsed Stage Label Rules */
.ultracard > .row > .icon > .collapsed-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    
    font-size: var(--fs-tag);
    font-weight: var(--fw-bold);
    letter-spacing: 1px;
    text-transform: uppercase;
    
    border: 2px solid var(--accent);
    border-radius: 6px;
    margin: 0 auto 12px auto;
    padding: 12px 8px;
    box-sizing: border-box;
}

.ultracard>.row>.icon>.expanded-stage {
    display: none;
}

input:checked+.ultracard .row .collapsed-stage {
    display: none;
}

input:checked + .ultracard .row .expanded-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 20px;
    bottom: 25px;
    width: 44px;
    height: 44px;
    margin: 0;
    z-index: 10;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(247, 147, 26, .55);
    border-radius: 50%;
    
    font-size: var(--fs-h4);
    font-weight: var(--fw-bold);
    color: var(--accent);
}

.ultracard>.row>.description {


    display: flex;

    justify-content: center;
    flex-direction: column;

    overflow: hidden;

    width: 320px;
    margin-left: 90px;
    opacity: 0;

    transform: translateY(50px);

    transition-delay: .3s;
    transition: all .3s ease;




}

.ultracard>.row>.description h4 {
    font-size: var(--fs-h4);
    font-weight: var(--fw-bold);
    margin-bottom: 8px;
    color: var(--white);
}

.ultracard>.row>.description p {
    color: rgba(255, 255, 255, .7);
    font-size: var(--fs-body);
    line-height: 1.6;
}

input {


    display: none;


}

input:checked+label {


    width: 460px;
    box-shadow:
        0 0 20px rgba(247, 147, 26, .12),
        0 0 50px rgba(247, 147, 26, .08);


}

input:checked+.ultracard .description {


    opacity: 1;

    transform: translateY(0);


}

.ultracard::before {

    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(ellipse at top center,
            rgba(247, 147, 26, .22) 0%,
            rgba(247, 147, 26, .10) 18%,
            rgba(247, 147, 26, .03) 35%,
            transparent 60%);
    z-index: 0;
    border-radius: 24px;
    transition: .5s ease;
}


input:checked+.ultracard[for="c1"]::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image: url('assets/images/requirements_and_architecture.png');
    background-size: cover;
    background-position: center;

    filter: brightness(0.45);
    border-radius: 24px;
    z-index: 0;
}

input:checked+.ultracard[for="c2"]::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image: url('assets/images/hardware_development.png');
    background-size: cover;
    background-position: center;

    filter: brightness(0.45);
    border-radius: 24px;
    z-index: 0;
}

input:checked+.ultracard[for="c3"]::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image: url('assets/images/firmware.png');
    background-size: cover;
    background-position: center;

    filter: brightness(0.6);
    border-radius: 24px;
    z-index: 0;
}

input:checked+.ultracard[for="c4"]::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image: url('assets/images/pcb_proto.webp');
    background-size: cover;
    background-position: center;

    filter: brightness(0.35);
    border-radius: 24px;
    z-index: 0;
}

input:checked+.ultracard[for="c5"]::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image: url('assets/images/pcb_testing.jpg');
    background-size: cover;
    background-position: center;

    filter: brightness(0.35);
    border-radius: 24px;
    z-index: 0;
}

input:checked+.ultracard[for="c6"]::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image: url('assets/images/pcb_pnp.webp');
    background-size: cover;
    background-position: center;

    filter: brightness(0.35);
    border-radius: 24px;
    z-index: 0;
}

/* .ultracard::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: var(--accent);
} */


.collapsed-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.65);
    font-weight: var(--fw-semibold);
    letter-spacing: 2px;
    font-size: var(--fs-ultratag);
    text-transform: uppercase;
    z-index: 2;
    transition: .4s ease;
    
}

input:checked+.ultracard .collapsed-title {

    opacity: 0;

    transform:
        translate(-50%, -50%) rotate(-90deg) scale(1.2  );
}


@media (max-width: 1200px) {


    .process-layout {

        flex-direction: column;
        align-items: flex-start;
    }

    .section-header {

        flex: 0 0 420px;
        flex-shrink: 0;
    }

    .wrapper {

        flex: 1;
        overflow: hidden;
    }


}


/* =========================
   RESOURCES DROPDOWN
========================= */

.dropdown {

    position: relative;

}

.dropdown > a::after {

    content: "▾";

    margin-left: 6px;

    font-size: 0.7em;

}

.dropdown-menu {

    position: absolute;

    top: calc(100% + 15px);

    left: 0;

    width: 320px;

    padding: 10px;

    background: rgba(8,8,8,0.97);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 16px;

    backdrop-filter: blur(20px);

    box-shadow: 0 20px 60px rgba(0,0,0,0.35);

    opacity: 0;

    visibility: hidden;

    transition: all 0.25s ease;

}

.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

}

.dropdown-menu li {

    width: 100%;

}

.dropdown-menu a {

    display: block;

    padding: 14px 16px;

    border-radius: 10px;

}
.dropdown-menu a:hover {

    background: rgba(255,255,255,0.06);

}
css
/* ===================================
   COOKIE BANNER
=================================== */

.cookie-banner {

    position: fixed;

    bottom: 24px;

    left: 24px;

    right: 24px;

    z-index: 99999;

    display: flex;

    justify-content: center;

}

.cookie-content {

    width: min(700px,100%);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 20px 24px;

    border-radius: 18px;

    background: rgba(15,20,27,.96);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,.08);

    box-shadow: 0 15px 40px rgba(0,0,0,.25);

}

.cookie-content p {

    margin: 0;

    color: rgba(255,255,255,.85);

    line-height: 1.6;

    font-size: .95rem;

}

.cookie-content button {

    border: none;

    cursor: pointer;

    padding: 12px 24px;

    border-radius: 12px;

    background: var(--accent);

    color: white;

    font-weight: 600;

    transition: .25s ease;

}

.cookie-content button:hover {

    transform: translateY(-2px);

}

@media (max-width: 768px) {

    .cookie-content {

        flex-direction: column;

        align-items: flex-start;

    }

}

