@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Minimalist Slate Palette */
    --bg-color: #050505;
    --bg-secondary: #0a0a0c;

    --text-primary: #ffffff;
    --text-secondary: #888888;

    --tech-color: #00d2ff;
    /* Azure Accent */
    --coffee-color: #d4a373;
    /* Gold Accent */

    /* Precision Glass */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);

    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    cursor: auto;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Clean Background --- */
.bg-subtle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #0a0a10 0%, var(--bg-color) 100%);
}

/* --- Fixed Minimalist Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
    /* Ensure header is on top */
    transition: var(--transition);
}

.header.scrolled {
    padding: 1rem 8%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: var(--coffee-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    transition: var(--transition);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #fff;
}

/* --- Section Styling --- */
section {
    padding: 10rem 8%;
}

h2.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 4rem;
    letter-spacing: -2px;
    text-align: center;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8% 0;
    /* Top padding for fixed header */
    gap: 4rem;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image {
    width: 450px;
    height: 550px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* Keep below header */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(110%);
    transition: var(--transition);
}

.hero-image:hover img {
    filter: grayscale(0%) contrast(100%);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, var(--bg-color) 100%);
}

.hero .badge {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tech-color);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
}

.hero p {
    color: var(--text-secondary);
    max-width: 500px;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* --- Minimalist Cards --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 1px;
    /* Architectural sharp corners */
    transition: var(--transition);
}

.card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.01);
    cursor: pointer;
}

.card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Project Specifics --- */
.project-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tech-tag {
    font-size: 0.7rem;
    color: var(--tech-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 4px;
}

.project-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-icon {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-icon:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* --- Vertical Timeline (Clean) --- */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid var(--glass-border);
}

.timeline-item {
    padding-bottom: 4rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 0.25rem;
    width: 0.6rem;
    height: 0.6rem;
    background: var(--bg-color);
    border: 1px solid var(--text-secondary);
    border-radius: 50%;
}

.timeline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.timeline-item span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

/* --- Skills Pills --- */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skill-tag {
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.skill-tag:hover {
    color: #fff;
    border-color: #fff;
}

/* --- Buttons (Sophisticated) --- */
.btn {
    padding: 1rem 2.5rem;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn:hover {
    background: #fff;
    color: #000;
}

.btn-ghost {
    background: transparent;
    border-color: var(--glass-border);
    color: var(--text-secondary);
}

.btn-ghost:hover {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

/* --- Custom Cursor (Minimal) --- */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-out;
}

/* --- Blog Bento Grid --- */
.blog-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 1.5rem;
    margin-top: 4rem;
}

.blog-box {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 1px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-box:nth-child(5n+1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Featured Large */
.blog-box:nth-child(5n+2) {
    grid-column: span 2;
}

/* Wide */
.blog-box:nth-child(5n+4) {
    grid-row: span 2;
}

/* Tall */

.blog-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.blog-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) opacity(0.3);
    transition: var(--transition);
}

.blog-box:hover .blog-img img {
    filter: grayscale(0%) opacity(0.5);
    transform: scale(1.05);
}

.blog-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
}

.blog-content .date {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tech-color);
    margin-bottom: 1rem;
    display: block;
}

.blog-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

/* --- Post View Immersive --- */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--tech-color);
    z-index: 2000;
    transition: width 0.1s ease;
}

.post-view {
    padding-top: 15vh;
    max-width: 900px;
    margin: 0 auto;
}

.post-header {
    text-align: center;
    margin-bottom: 4rem;
}

.post-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.post-date {
    color: var(--tech-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-img {
    width: 100%;
    height: 500px;
    margin-bottom: 4rem;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #dfdfdf;
}

.back-btn {
    display: inline-block;
    margin-top: 4rem;
}

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

    .blog-box:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .post-img {
        height: 300px;
    }
}

/* --- Footer --- */
footer {
    padding: 6rem 8%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

footer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 120px;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image-container {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        max-width: 350px;
        height: 400px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 5%;
    }

    /* Hamburger Menu Styling */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #fff;
        transition: var(--transition);
    }

    /* Hamburger Animation to X */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    /* Section Adjustments */
    section {
        padding: 6rem 5%;
    }

    h2.section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .card {
        padding: 2rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item::before {
        left: -1.85rem;
    }

    /* Disable Custom Cursor on Touch */
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    * {
        cursor: auto !important;
    }
}

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

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

    .btn {
        padding: 0.8rem 1.5rem;
        width: 100%;
        text-align: center;
    }

    .hero div[style*="display: flex"] {
        flex-direction: column;
        width: 100%;
    }
}

/* --- Visit Counter (Glassmorphic) --- */
#visit-counter {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.counter-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 600;
}

.counter-value {
    font-size: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

#visit-counter i {
    color: var(--tech-color);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}


@media (max-width: 768px) {
    #visit-counter {
        bottom: 1rem;
        left: 1rem;
        padding: 0.6rem 1rem;
    }

    .counter-value {
        font-size: 1rem;
    }
}

/* --- Socio Blade Agency Section --- */
.social-strategy {
    background: linear-gradient(180deg, var(--bg-color) 0%, #0c0c14 100%);
    position: relative;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.social-strategy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(212, 163, 115, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.strategy-badge {
    text-align: center;
    color: var(--coffee-color);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
}

.strategy-brand {
    transition: var(--transition);
    cursor: default;
}

.strategy-brand:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(212, 163, 115, 0.3);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.strategy-card {
    border-radius: 1px;
    position: relative;
    padding: 3.5rem 2.5rem;
    overflow: hidden;
}

.strategy-icon {
    font-size: 2rem;
    color: var(--tech-color);
    margin-bottom: 1.5rem;
}

.strategy-metrics {
    margin-top: 2rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}

/* --- The Process Wrap --- */
.process-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 4rem;
}

.process-step {
    position: relative;
}

.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -1.5rem;
    left: 0;
    line-height: 1;
}

.process-step h4 {
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #fff;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- Generic Scroll Containers --- */
.scroll-container-wrap {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    padding: 3rem 1rem;
    border-radius: 2px;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.scroll-container-wrap::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, var(--bg-color), transparent);
    pointer-events: none;
    z-index: 1;
}

.projects-grid,
.labs-grid,
.journey-list {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    scroll-snap-type: x mandatory;
    /* Snap for better control */
}

.projects-grid::-webkit-scrollbar,
.labs-grid::-webkit-scrollbar,
.journey-list::-webkit-scrollbar {
    display: none;
}

.projects-grid .card,
.labs-grid .lab-card,
.journey-list .card {
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.03);
    /* Slightly more visible */
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    /* Standardized padding */
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    flex: 0 0 300px;
}

.projects-grid,
.labs-grid {
    min-height: 400px;
    /* Prevent collapse */
}

.labs-grid .lab-card {
    flex: 0 0 280px;
    aspect-ratio: 1 / 1;
    min-height: 280px;
    padding: 2rem;
}

/* Specific styling for Project Cards in horizontal scroll */
.projects-grid .card {
    flex: 0 0 400px;
    padding: 0;
}

/* Specific styling for Journey Cards with Thumbnails */
.journey-list .card {
    padding: 0;
    flex: 0 0 320px;
}

.journey-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    font-size: 2.5rem;
    color: #fff;
    z-index: 2;
}

.journey-card-link:hover .play-overlay {
    opacity: 1;
}

.view-link {
    font-size: 0.8rem;
    color: var(--tech-color);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.journey-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.journey-list .card:hover .journey-thumb img {
    transform: scale(1.1);
}

.journey-content {
    padding: 2rem;
}

/* --- Scroll Buttons --- */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    /* Slightly larger */
    height: 60px;
    background: rgba(10, 10, 12, 0.9);
    border: 1px solid var(--tech-color);
    /* Highlight border */
    color: var(--tech-color);
    cursor: pointer;
    z-index: 20;
    /* Much higher than edge fade */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    /* Circular buttons for better aesthetics */
}

.scroll-btn:hover {
    background: var(--tech-color);
    color: #000;
    border-color: var(--tech-color);
}

.scroll-btn.prev {
    left: 0;
}

.scroll-btn.next {
    right: 0;
}

.lab-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.lab-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--tech-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lab-icon {
    font-size: 2rem;
    color: var(--tech-color);
    margin-bottom: 0.5rem;
}

.lab-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.lab-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    margin: 0;
}

.lab-link {
    font-size: 0.8rem;
    color: var(--tech-color);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.lab-card:hover .lab-link {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {

    .labs-grid,
    .projects-grid,
    .journey-list {
        display: flex;
    }

    .process-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}