/* ══════════════════════════════════════════════════
   portfolio.css — ZSM Digital Portfolio Page
   Portfolio grid, filters, case studies, testimonials, process
   ══════════════════════════════════════════════════ */

/* Portfolio Hero */
.portfolio-hero {
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 60px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 13px;
    color: #999;
    margin-bottom: 32px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.portfolio-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.03em;
}

.portfolio-hero h1 em {
    font-style: italic;
}

.portfolio-hero h1 strong {
    font-weight: 500;
}

.portfolio-hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-weight: 400;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #999;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 13px;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-hover);
    color: white;
}

.filter-btn.active {
    background: white;
    border-color: white;
    color: #000;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 60px 20px 0;
}

.portfolio-item {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(.2,.9,.2,1);
    cursor: pointer;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    border-color: var(--border-hover);
}

.portfolio-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 65%;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #666;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.portfolio-item:hover .portfolio-preview {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: #999;
}

.portfolio-content {
    padding: 24px;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.portfolio-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.portfolio-tag {
    background: rgba(255, 255, 255, 0.05);
    color: #bbb;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Case Study Badge */
.case-study-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(124, 34, 197, 0.12);
    border: 1px solid #515497;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    z-index: 5;
    transition: all 0.3s ease;
    pointer-events: none;
}

.case-study-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    animation: casePulse 2s ease-in-out infinite;
}

@keyframes casePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.portfolio-item:hover .case-study-badge {
    background: rgba(124, 34, 197, 0.18);
    border-color: rgba(124, 34, 197, 0.4);
}

.case-study-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: rgba(124, 34, 197, 0.12);
    border: 1px solid rgba(124, 34, 197, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.case-study-cta .cta-arrow {
    transition: transform 0.3s ease;
}

.portfolio-item:hover .case-study-cta {
    background: rgba(124, 34, 197, 0.18);
    border-color: rgba(124, 34, 197, 0.4);
}

.portfolio-item:hover .case-study-cta .cta-arrow {
    transform: translateX(4px);
}

.portfolio-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

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

.stat-value {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.stat-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* Client Testimonials */
.testimonials {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.testimonials h2 .highlight {
    font-weight: 300;
    font-style: italic;
}

.testimonials .subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: all 0.36s cubic-bezier(.2,.9,.2,1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-soft);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    font-size: 0.95rem;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.author-info p {
    color: #666;
    font-size: 0.85rem;
}

/* Process Section */
.process {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.process h2 .highlight {
    font-weight: 300;
    font-style: italic;
}

.process .subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), rgba(255,255,255,0.08), transparent);
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

.process-number {
    width: 68px;
    height: 68px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.4rem;
    margin: 0 auto 24px;
    color: white;
    transition: all 0.36s ease;
    cursor: pointer;
    position: relative;
}

.process-step:hover .process-number {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.06);
    border-color: var(--border-hover);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA Section */
.portfolio-cta {
    background: var(--card-bg);
    margin: 60px 20px 100px;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-cta h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.portfolio-cta p {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 1rem;
}

.cta-button {
    background: white;
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-button:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}


/* ── Portfolio Responsive ── */
/* Mobile Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    background: rgba(10, 10, 12, 0.98);
    border-radius: 16px;
    padding: 24px 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 20px;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    color: #999;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-buttons .login-btn {
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #999;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    font-weight: 400;
}

.mobile-buttons .login-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.mobile-buttons .signup-btn {
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    background: white;
    color: #000;
    border: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-buttons .signup-btn:hover {
    background: #e5e5e5;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 900px) {
    .navbar {
        padding: 14px 20px;
    }

    .nav-links, .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .portfolio-hero {
        padding: 120px 20px 50px;
    }

    .portfolio-hero h1 {
        font-size: 2.8rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .portfolio-hero h1 {
        font-size: 2.2rem;
    }

    .filter-buttons {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .portfolio-cta {
        margin: 40px 10px 60px;
        padding: 40px 20px;
    }

    .portfolio-cta h2 {
        font-size: 1.6rem;
    }

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

/* Animation for portfolio items */
.portfolio-item {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.6s ease forwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.08s; }
.portfolio-item:nth-child(2) { animation-delay: 0.16s; }
.portfolio-item:nth-child(3) { animation-delay: 0.24s; }
.portfolio-item:nth-child(4) { animation-delay: 0.32s; }
.portfolio-item:nth-child(5) { animation-delay: 0.40s; }
.portfolio-item:nth-child(6) { animation-delay: 0.48s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Meet Your Developer */
.meet-dev-section {
    padding: 100px 40px;
    background: var(--bg-color);
    position: relative;
}
.meet-dev-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}
.meet-dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 13px;
    color: #999;
    margin-bottom: 16px;
}
.meet-dev-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}
.meet-dev-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: white;
}
.meet-dev-text p {
    font-size: 1rem;
    color: #888;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.meet-dev-video {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 11, 0.8);
    position: relative;
    cursor: pointer;
}
.meet-dev-video video {
    width: 100%;
    display: block;
    border-radius: 12px;
}
.meet-dev-video .video-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 4px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.meet-dev-video:hover .video-pill,
.meet-dev-video .video-pill.visible {
    opacity: 1;
}
.video-pill button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}
.video-pill button:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.video-pill button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.meet-dev-video .video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.meet-dev-video .video-play-overlay.hidden {
    opacity: 0;
}
.video-play-overlay .play-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-circle svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-left: 3px;
}
@media (max-width: 768px) {
    .meet-dev-section { padding: 60px 20px; }
    .meet-dev-text h2 { font-size: 1.8rem; }
    .meet-dev-video .video-pill { opacity: 1; }
}

/* ── Bento Reviews Grid ── */
.bento-reviews {
    padding: 0 20px 120px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-color);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 16px;
}

.bento-cell {
    position: relative;
    background: var(--card-bg-top);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 2px;
    overflow: hidden;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.bento-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.015) 100%);
    pointer-events: none;
}

.bento-cell:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px) translateZ(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-featured   { grid-column: span 2; grid-row: span 2; }
.bento-stat       { grid-column: span 1; grid-row: span 1; }
.bento-tall        { grid-column: span 1; grid-row: span 2; }
.bento-wide        { grid-column: span 2; grid-row: span 1; }

.bento-label {
    font-family: 'Inter', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.bento-big-num {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1;
}

.bento-review-text {
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
}

.bento-attribution {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
}

.bento-avatar {
    width: 32px;
    height: 32px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    background: #111;
}

.bento-user-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.bento-user-role {
    font-size: 11px;
    color: var(--text-muted);
}

.bento-progress {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    width: 100%;
    position: relative;
    margin-top: 14px;
}

.bento-progress-fill {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    background: #fff;
}

.bento-tag {
    font-size: 10px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--text-muted);
    width: fit-content;
}

.bento-dots {
    display: flex;
    gap: 4px;
}

.bento-dot {
    width: 4px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
}

@keyframes bentoReveal {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bento-cell {
    opacity: 0;
    transform: translateY(24px);
}

.bento-cell.revealed {
    animation: bentoReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bento-cell:nth-child(1) { animation-delay: 0.05s; }
.bento-cell:nth-child(2) { animation-delay: 0.12s; }
.bento-cell:nth-child(3) { animation-delay: 0.19s; }
.bento-cell:nth-child(4) { animation-delay: 0.26s; }
.bento-cell:nth-child(5) { animation-delay: 0.33s; }
.bento-cell:nth-child(6) { animation-delay: 0.40s; }
.bento-cell:nth-child(7) { animation-delay: 0.47s; }

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-featured { grid-column: span 2; grid-row: span 1; }
    .bento-tall { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 540px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .bento-cell {
        grid-column: auto;
        grid-row: auto;
        padding: 20px;
    }
    .bento-cell:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / span 2;
    }
    .bento-cell:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    .bento-cell:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }
    .bento-cell:nth-child(3),
    .bento-cell:nth-child(5),
    .bento-cell:nth-child(6),
    .bento-cell:nth-child(7) {
        display: none;
    }
    .bento-review-text { font-size: 15px; }
}

/* --- Portfolio inline replacements --- */
.portfolio-case-link { text-decoration: none; color: inherit; }
.portfolio-preview-img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; margin: 0 auto; }
.bento-review-quote { font-size: 22px; font-weight: 300; line-height: 1.5; color: rgba(255,255,255,0.88); }
.bento-tag-mt { margin-top: 20px; }
.bento-big-metric { font-size: 36px; font-weight: 300; }
.bento-label-small { margin-top: 6px; font-size: 9px; }
.bento-row-between { display: flex; justify-content: space-between; align-items: flex-start; }
.bento-desc { font-size: 14px; color: var(--text-muted); max-width: 340px; line-height: 1.6; }
.bento-dot-white { background: #fff; }
.bento-metric-row { display: flex; align-items: baseline; gap: 6px; }
.bento-metric-val { font-size: 32px; font-weight: 300; }
.bento-label-green { color: #4ade80; }
