/* ============================================
   Portfolio Inner Page - Apple iPad Air Inspired Design
   Clean, Spacious, Modern
   ============================================ */

/* Hero Section - Apple-style Large Hero */
.inventory-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    background: #000;
    margin-top: 0;
}

.inventory-hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.inventory-hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.inventory-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.04em;
}

.inventory-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.01em;
}

.inventory-hero-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.inventory-meta-item {
    padding: 0.625rem 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.03em;
    font-family: var(--font-body);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.inventory-meta-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.inventory-hero-image {
    width: 90%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.inventory-hero-image video {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

.video-mute-button {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background:transparent;
    border: none;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #3f3f3f;
    font-size: 1.125rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
    
/* Project Content */
.bg-white {
    background: #fff;
    overflow: visible;
}

.project-content {
    width: 100%;
    overflow: visible;
}

/* Projects Header Section */
.project .header {
    padding: 6rem 2rem 2rem 2rem;
    position: relative;
}

.project .header-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    overflow: visible;
    position: relative;
}


.project .header-text {
    display: flex;
    flex-direction: column;
}

.project .company-name {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.2rem;
    font-weight: 400;
}

.project .header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--color-black);
}

.project .nav-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.project .tag {
    padding: 0.375rem 1rem;
    background: #f5f5f7;
    border-radius: 16px;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #666;
}

/* Insight Landa Specific - Progress iframe in header */
.project.insightlanda .header-image .progress-iframe {
    width: 260px;
    height: 600px;
    border: none;
    overflow: visible;
    pointer-events: none;
    position: relative;
    margin: -120px 0;
    clip-path: inset(120px 0 120px 0);
}

/* Product Objective Section */
.project .product-objective h2 {
    font-size: 3rem;
}

.project .product-objective .gradient-text {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: #1d1d1f;
    letter-spacing: 0.01em;
    font-family: var(--font-body);
    text-transform: uppercase;
}


/* Adoption Rate Circle - Insight Landa Specific */
.insightlanda .adoption-circle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.insightlanda .adoption-highlight {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
    color: #1d1d1f;
}

.insightlanda .adoption-progress-container {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: visible;
}

.insightlanda .adoption-progress-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}

.insightlanda .adoption-progress-bg {
    fill: none;
    stroke: #E2E2E2;
    stroke-width: 20;
}

.insightlanda .adoption-progress-fill {
    fill: none;
    stroke: #01aeee;
    stroke-width: 16;
    stroke-linecap: round;
    transition: stroke-dasharray 0.1s linear, stroke-dashoffset 0.1s linear;
}

.insightlanda .adoption-inner-background {
    fill: #ffffff;
}

.insightlanda .adoption-progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 200px;
    z-index: 10;
}

.insightlanda .adoption-percentage {
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    letter-spacing: -1px;
    animation: countUp 0.5s ease-out;
    color: #01aeee;
}

.insightlanda .adoption-percentage.inner-shadow {
    background-color: #01aeee;
    color: transparent;
    text-shadow: 2px 2px 10px rgba(255,255,255,0.5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}

.insightlanda .adoption-percentage .percent-symbol {
    margin-left: -8px;
}

/* Process Section */
.project .grid-intro {
    margin-bottom: 3rem;
}

.project .research-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
    align-items: stretch;
}

.project .research-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project .research-item-right {
    grid-row: span 2;
}

.grayBG {
    background: #fafafa;
}

.text-center {
    text-align:center;
}

/* Primary Users Section */
.users-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
}

.user-card h3 {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 2rem 0 1rem 0;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-body);
}

.user-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-card li {
    line-height: 1.75;
    padding-left: 1.25rem;
    position: relative;
}

.user-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #999;
}



/* Table Section */
.project .table-wrapper {
    overflow-x: auto;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
}

.project table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.project table thead tr {
    border-bottom: 1px solid #e8e8e8;
    background: #fafafa;
}

.project table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 500;
    color: #1d1d1f;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project table tbody tr {
    border-bottom: 1px solid #f5f5f5;
}

.project table td {
    padding: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.project table td:first-child {
    color:var(--color-black);
    font-weight: 400;
}

/* Text Grid Section */
.project .text-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3.5rem;
    align-items: start;
}

.project .grid-sidebar {
    position: sticky;
    top: 2rem;
}

.project .text-grid-sidebar {
    position: sticky;
    top: 2rem;
}

.project .text-grid-item {
    margin-bottom: 2.5rem;
}

/* Challenges & Solutions Grid */
.project .challenges-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.project .challenge-item,
.project .solution-item {
    margin-top: 2rem;
}

/* Mobile styles moved to portfolio-mobile.css */

/* Report Sections */
.project .report-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3.5rem;
    align-items: start;
}

.project .report-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
    z-index: 1;
}

/* Below 1200px - Stack content below title */
@media (max-width: 1200px) {
    /* Header - Stack image below text */
    .project .header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project .header-text {
        order: -1;
    }
    
    .project .header-image {
        order: 1;
    }
    
    /* Report Grid - Keep two columns at 1200px (will stack at 960px in portfolio-mobile.css) */
    /* Text Grid - Remove sticky positioning */
    .project .text-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project .text-grid-sidebar {
        position: static;
    }
    
    /* Live Widget - Scaling handled in portfolio-mobile.css */
}

.project .report-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
    z-index: 1;
}

.project .header-image
{
    margin-top: 2rem;
}

.project .report-image
{
    border:1px solid #dcdcdc;
    padding: 1rem;
    border-radius:20px;
    background: #ffffff;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.project .black .report-image
{
    border:1px solid #393c4c;
    background: #000;
}

.project .black .report-image img
{
    border:1px solid #393c4c;
}

.perspective {
    contain: strict;
    perspective: 4000px;
    perspective-origin: 100% 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    position: relative;
}

.project .report-image .dashboard-chart-iframe {
    margin: 0;
    padding: 0;
    border: none;
    display: block;
    min-height:500px;
    width: 100%;
    overflow: visible;
}

.project .report-image img {
    width: 100%;
    height: auto;
    border-radius:12px;
    border: 1px solid #e0e0e0;
}

/* Live Widget Container */
.live-widget-container {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: visible;
    font-family: 'Oswald', sans-serif;
    color: #797979;
}

.live-widget-container strong {
    color: #333333;
}

.project .report-image .live-widget-container img
 { border:0 none;
    border:none;
}

.project .report-image img.duplex-icon {width:16px}

/* SafeArk - Remove frames from screenshots */
.safeark .report-image {
    border: none;
    padding: 0;
    background: transparent;
}

.safeark .report-image img {
    border: none;
    border-radius: 0;
}

.live-widget-header-top {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.press-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.press-name {
    font-size: 1.2rem;
    font-weight:300;
    color: #1DAFED;
    font-family: 'Oswald', sans-serif;
}

.press-tag {
    font-size: 0.75rem;
    font-weight:400;
    background: #1DAFED;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
}

.fullscreen-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 1.125rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.live-widget-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
}

.live-widget-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-queue-summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    color: #797979;
    font-family: 'Oswald', sans-serif;
}

.queue-item {
    color: #797979;
    font-weight:300;
}

.queue-item strong{
    color: #797979;
    font-weight:500;
    margin-right: 4px;
}

.queue-arrow {
    color: #6b7280;
}

.queue-time {
    color: #1f2937;
    font-weight: 600;
}

.queue-separator {
    color: #d1d5db;
    margin: 0 0.5rem;
}

.queue-completed strong {
    color: #ABCF41;
    font-weight: 600;
}

.queue-aborted strong {
    color: #F95165;
    font-weight: 600;
}

.mode-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    font-family: 'Oswald', sans-serif;
}

.duplex-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.current-job {
    display: block;
    margin-bottom: 0.75rem;
    font-family: 'Oswald', sans-serif;
    white-space: nowrap;
}

.now-printing-label strong{
    color: #ABCF41;
    font-size: 0.9375rem;
    font-weight: 600;
}

.next-job {
    display: block;
    font-family: 'Oswald', sans-serif;
    white-space: nowrap;
}

.next-job-label {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
}

.next-job-name {
    color: #6b7280;
    font-size: 0.875rem;
}

.loaded-substrate {
    display: block;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    white-space: nowrap;
}

.substrate-label {
    color: #1f2937;
    font-size: 0.875rem;
    font-weight: 600;
}

.substrate-name {
    color: #1f2937;
    font-size: 0.875rem;
}

.press-illustration {
    margin-top: 1rem;
    position: relative;
}

.press-image-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.press-image {
    width: 100%;
    height: auto;
    display: block;
}

.press-bubble {
    position: absolute;
    top:-10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1dafedd1;
    color: #ffffff;
    padding: 2px 15px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8rem;
    font-family: 'Oswald', sans-serif;
}

.live-widget-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1rem;
}

.progress-widget-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.progress-widget-wrapper .confetti-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.progress-widget-wrapper .progress-container {
    position: relative;
    width: 260px;
    height: 260px;
    overflow: visible;
}

.progress-widget-wrapper .progress-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}

.progress-widget-wrapper .external-circle {
    fill: none;
    stroke: #9370db;
    stroke-width: 1.5;
    stroke-dasharray: 3 3;
}

.progress-widget-wrapper .outer-circle-bg {
    fill: none;
    stroke: #E2E2E2;
    stroke-width: 20;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.progress-widget-wrapper .outer-circle-fill {
    fill: none !important;
    stroke: url(#liveWidgetOuterGradient) !important;
    stroke-width: 16 !important;
    stroke-linecap: round !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.progress-widget-wrapper .progress-bg {
    fill: none;
    stroke: #F7F7F7;
    stroke-width: 20;
}

.progress-widget-wrapper .progress-fill {
    fill: none;
    stroke: #ABCF41;
    stroke-width: 16;
    stroke-linecap: round;
    transition: stroke-dasharray 0.1s linear, stroke-dashoffset 0.1s linear;
}

.progress-widget-wrapper .inner-background {
    fill: #ffffff;
}

.progress-widget-wrapper .progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 240px;
    z-index: 10;
}

.progress-widget-wrapper .status-text {
    font-size: 19px;
    color: #ABCF41;
    font-weight: 500;
    margin-top: 24px;
    font-family: 'Oswald', sans-serif;
}

.progress-widget-wrapper .percentage {
    font-size: 52px;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 0px 12px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: -1px;
}

.progress-widget-wrapper .inner-shadow {
    background-color: #92bd13;
    color: transparent;
    text-shadow: 2px 2px 10px rgba(255,255,255,0.5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}

.progress-widget-wrapper .inner-shadow-dark {
    background-color: #8d8d8de0;
    color: transparent;
    text-shadow: 2px 2px 10px rgba(255,255,255,0.5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}

.progress-widget-wrapper .percentage .percent-symbol {
    margin-left: -12px;
}

.progress-widget-wrapper .count-text {
    font-size: 15px;
    font-family: 'Oswald', sans-serif;
    margin-top: 4px;
}

.progress-widget-wrapper .count-text .count-first,
.progress-widget-wrapper .count-text .count-slash {
    font-size: 20px;
    font-weight: 500;
    margin-left: -4px;
}

.progress-widget-wrapper .count-text .count-second {
    font-size: 15px;
    margin-left: -4px;
}

.progress-widget-wrapper .time-text {
    font-size: 13px;
    color: #8d8d8d99;
    font-family: 'Oswald', sans-serif;
    font-weight: lighter;
    margin-top: -4px;
}

.daily-target {
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.target-current {
    font-size: 2.2rem;
    font-weight: 500;
    color: #333333;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.target-label {
    font-size: 1.2rem;
    color: #1DAFED;
}



/* Mobile styles moved to portfolio-mobile.css */

/* Progress Object Section - Insight Landa Specific */
.insightlanda .project-content.progress-section {
    padding: 6rem 2rem;
    background: #fff;
}

.insightlanda .progress-object-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.insightlanda .progress-iframe {
    width: 100%;
    max-width: 600px;
    height: 600px;
    border: none;
    border-radius: 8px;
    overflow: visible;
}

/* Mobile styles moved to portfolio-mobile.css */

.insightlanda .progress-container {
    position: relative;
    width: 260px;
    height: 260px;
    overflow: visible;
}

.insightlanda .progress-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}

.insightlanda .external-circle {
    fill: none;
    stroke: #9370db;
    stroke-width: 1.5;
    stroke-dasharray: 3 3;
}

.insightlanda .outer-circle-bg {
    fill: none;
    stroke: #E2E2E2;
    stroke-width: 20;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.insightlanda .outer-circle-fill {
    fill: none;
    stroke: url(#progressOuterGradient);
    stroke-width: 16;
    stroke-linecap: round;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.insightlanda .confetti-container {
    position: relative;
    width: 100%;
    overflow: visible;
}

.insightlanda .progress-bg {
    fill: none;
    stroke: #F7F7F7;
    stroke-width: 20;
}

.insightlanda .progress-fill {
    fill: none;
    stroke: #ABCF41;
    stroke-width: 16;
    stroke-linecap: round;
    transition: stroke-dasharray 0.1s linear, stroke-dashoffset 0.1s linear;
}

.insightlanda .inner-background {
    fill: #ffffff;
}

.insightlanda .progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 240px;
    z-index: 10;
}

.insightlanda .status-text {
    font-size: 19px;
    color: #ABCF41;
    font-weight: 500;
    margin-top: 24px;
    font-family: 'Oswald', sans-serif;
}

.insightlanda .percentage {
    font-size: 52px;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 0px 12px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: -1px;
    animation: countUp 0.5s ease-out;
}

.insightlanda .inner-shadow {
    background-color: #92bd13;
    color: transparent;
    text-shadow: 2px 2px 10px rgba(255,255,255,0.5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}

.insightlanda .inner-shadow-dark {
    background-color: #8d8d8de0;
    color: transparent;
    text-shadow: 2px 2px 10px rgba(255,255,255,0.5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}

.insightlanda .percentage .percent-symbol {
    margin-left: -12px;
}

.insightlanda .count-text {
    font-size: 15px;
    font-family: 'Oswald', sans-serif;
    margin-top: 4px;
}

.insightlanda .count-text .count-first,
.insightlanda .count-text .count-slash {
    font-size: 20px;
    font-weight: 500;
    margin-left: -4px;
}

.insightlanda .count-text .count-second {
    font-size: 15px;
    margin-left: -4px;
}

.insightlanda .time-text {
    font-size: 13px;
    color: #8d8d8d99;
    font-family: 'Oswald', sans-serif;
    font-weight: lighter;
    margin-top: -4px;
}

@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Final Screens Section */
.final-screens {
    padding: 0;
}

.final-screens img {
    width: 100%;
    height: auto;
    display: block;
}

.final-screens .dashboard-chart-iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 8px;
    display: block;
}

/* Info Box Section */
.side-by-side-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 90%;
    margin: 0 auto;
    padding:  2rem 2rem 6rem 2rem;
    align-items: stretch;
}

.side-by-side-layout .process {
    padding: 0;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.side-by-side-layout .process .container {
    padding: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.side-by-side-layout .card-container-section {
    padding: 0;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.side-by-side-layout .card-container-section .container {
    padding: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.card-container-section {
    padding: 8rem 2rem;
    max-width: 90%;
    margin: 0 auto;
}

.info-box {
    max-width: 100%;
    margin: 0;
    background: #f5f5f7;
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    flex: 1;
    min-height: 100%;
}

.side-by-side-layout .info-box-logo {
    width: 90px;
    height: auto;
    opacity: 0.9;
    align-self: flex-start;
    margin-bottom: 2rem;
}

.info-box-logo {
    width: 90px;
    height: auto;
    opacity: 0.9;
}

.info-box-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-box-item {
    text-align: left;
}

.info-box-title {
    font-family: var(--font-heading);
    font-size: clamp(1.375rem, 2.5vw, 1.875rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: #1d1d1f;
}

.info-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-box-list li {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
    padding-left: 0;
}

.info-box-list li::before {
    display: none;
}

/* Process Section */

.process.first {
    padding-top: 10rem;
}

.process.black {
    background: #000;
    color: #fff;
}

.process.black .container {
    max-width: 90%;
    margin: 0 auto;
}


.sub-container {
    max-width: 100%;
}

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

.primary-text-color {
    color: #666;
}

.primary-left,
.primary-right {
    padding: 0;
}

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

.item-intro li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.item-intro li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

/* Header Section */
.header {
    width: var(--width);
    max-width: var(--max-width);
    margin: 0 auto;
}

.header-text {
    display: flex;
    flex-direction: column;
}

.header-text p {
    font-size: 1.1rem;

}

.header-image {
    width: 100%;
}

.header-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Project Section */
.project-section {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-image-source: radial-gradient(circle farthest-corner at 100% 0, #ffaccf 28%, #5cb6f8 51%, #ba75e0 87%, #dd5183 96%);
}

.project-section.noborder {
    border-bottom: 0 none;
}

.project-section.nopadding {
    padding-bottom: 0;
}

.project-section.nomargin {
    margin-bottom: 0;
}

.project-section-content {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--primary-color);
    font-family: var(--body-font);
    font-weight: 300;
    text-align: left;
}

.project-section.separetor {
    margin-bottom: var(--spacing-lg);
    padding: 0;
    border-bottom: 1px solid var(--primary-color);
}

.project-section-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.project-section-header2 {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 2rem;
    align-items: start;
}

.project-section-title {
    position: sticky;
    top: 2rem;
    text-align: left;
}

.project-section-title h2, .context-item h3, .section-title, .process-section h3, .process-step h4, .design-step h4, .post-step h4 {
    font-size: var(--font-size-h3);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    font-family: var(--heading-font);
    letter-spacing: -0.01em;
    color: var(--primary-color);
    text-transform: uppercase;
}

section.black p, section.black ul li {
    color: #cccccc;
}

section.black p strong, section.black p b, section.black ul li strong, section.black ul li b {
    color: #fff;
    font-weight: 300;
}

.black .project-section h2 {
    color: #fff;
}

.black#bgPrintControl {
    background-image: url('images/gallery/print-control-before.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 6%;
}

.black#bgPrintControl2 {
    background-image: url('images/gallery/print-control-after.png');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 14%;
    padding-top: 0;
}


@keyframes textShine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 100% center;
    }
}

.project-section-content.with-devider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
}

.project-section-content.with-devider > div {
    flex: 1;
    gap: var(--spacing-sm);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}

.project-section-content.with-devider > div p {
    width: 100%;
    margin-bottom: 0;
    box-sizing: border-box;
}

.project-section-content.with-devider > div ul {
    width: 100%;
    box-sizing: border-box;
    flex-basis: calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    padding-left: var(--spacing-md);
}

.project-section-content img {
    width: 100%;
}

.project-section .element-img {
    width: 80%;
    opacity: 80%;
}

.project-section-content p {
    margin-bottom: var(--spacing-md);
    text-align: left;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.project-section-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.project-section-content ul li {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
    position: relative;
    text-align: left;
    display: block;
    width: 100%;
    color: #333;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.project-section-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
}

.project-section-content ul li strong {
    display: inline-block;
    font-weight: 500;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

/* Project Navigation Section */
.project-navigation {
    padding: 2rem;
    background: #f7f7f7;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.project-navigation.black {
    background: #000000;
    border-top: 1px solid #0c0d13;
    border-bottom: 1px solid #13162a;
}

.project-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.project-nav-item {
    flex: 1;
    display: flex;
    justify-content: center;
}

.project-nav-item a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #666;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: var(--font-body);
}

.project-nav-item a:hover {
    color: #000;
}

.project-navigation.black .project-nav-item a:hover {
    color: #fff;
}

.project-nav-item i {
    font-size: 0.875rem;
}

.project-nav-prev {
    justify-content: flex-start;
}

.project-nav-top {
    justify-content: center;
}

.project-nav-next {
    justify-content: flex-end;
}

.project-nav-next a {
    flex-direction: row;
}

.project-nav-link-with-tooltip {
    position: relative;
}

.project-tooltip {
    position: absolute;
    bottom: calc(100% + 1rem);
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    min-width: 200px;
    text-align: center;
}

.project-nav-prev .project-tooltip {
    left: 0;
}

.project-nav-next .project-tooltip {
    right: 0;
}

.project-nav-link-with-tooltip:hover .project-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tooltip-thumbnail {
    width: 100%;
    margin-bottom: 0.75rem;
}

.tooltip-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.tooltip-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1d1d1f;
    font-family: var(--font-body);
}

/* Navigation Footer */


/* Responsive Design - All mobile styles moved to portfolio-mobile.css */
