
/* ========================================= */
/* PORTFOLIO SPA HUB STYLES                  */
/* ========================================= */
.portfolio-page {
    scroll-behavior: smooth;
}
.portfolio-main-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 10px;
}
.portfolio-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 60px;
}

.portfolio-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
@media (max-width: 992px) {
    .portfolio-categories-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-category-card {
    background: rgba(20, 20, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    justify-content: space-between;
}
.portfolio-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(65, 88, 208, 0.2);
    border-color: rgba(255, 204, 112, 0.3);
}

.port-card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.port-card-text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--clr-text);
}
.port-card-text p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-bottom: 0px;
}

.port-card-stats {
    display: flex;
    gap: 20px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-brand-pink);
    line-height: 1.2;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.port-card-visuals {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.port-card-main-img {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0,0,0,0.5);
}
.port-card-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}
.portfolio-category-card:hover .port-card-main-img img {
    opacity: 1;
}

.mini-gallery-title {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    display: block;
    margin-bottom: 8px;
}
.mini-thumbs {
    display: flex;
    gap: 10px;
}
.thumb-placeholder {
    width: 60px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}
.port-card-footer {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

/* ========================================= */
/* CATEGORY VIEW STYLES                      */
/* ========================================= */
.category-hero {
    position: relative;
    padding: 150px 0 80px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.category-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}
.category-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.category-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,15,0.95) 0%, rgba(10,10,15,0.7) 100%);
}
.category-hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.back-to-hub-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--clr-text);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 30px;
    padding: 8px 18px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.back-to-hub-btn:hover {
    background: var(--clr-brand-pink);
    border-color: var(--clr-brand-pink);
    color: var(--clr-text);
    box-shadow: 0 4px 20px rgba(200, 80, 192, 0.4);
    transform: translateY(-2px);
}
.back-to-hub-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.back-to-hub-btn:hover svg {
    transform: translateX(-4px);
}

.category-hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.category-hero-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}
.category-stats-row {
    display: flex;
    gap: 40px;
}
.hero-stat-item {
    display: flex;
    flex-direction: column;
}
.hero-stat-val { font-size: 2.5rem; font-weight: 900; color: #fff; }
.hero-stat-label { font-size: 0.9rem; color: var(--clr-brand-pink); text-transform: uppercase; letter-spacing: 1px; }

/* Category Projects Grid */
.category-projects-section {
    padding: 60px 0 100px;
    background: var(--clr-bg);
}
.portfolio-filters {
    display: none !important;
}
.filter-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-text-muted);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--clr-brand-blue);
    color: #fff;
    border-color: var(--clr-brand-blue);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}
.project-card {
    background: rgba(20,20,25,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: rgba(200,80,192,0.3);
}
.project-card-img {
    width: 100%;
    height: 250px;
    position: relative;
}
.project-card-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.project-year {
    position: absolute;
    top: 15px; right: 15px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}
.project-card-info {
    padding: 25px;
}
.project-card-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.project-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.project-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    color: var(--clr-text-muted);
}
.project-card-info p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}
.project-readmore {
    color: var(--clr-brand-pink);
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}
.project-card:hover .project-readmore { opacity: 0.8; }

.portfolio-cta-banner {
    background: linear-gradient(135deg, rgba(65,88,208,0.15) 0%, rgba(200,80,192,0.1) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
}
.cta-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-brand-pink);
}
.cta-icon svg { width: 30px; height: 30px; }
.cta-text h3 { font-size: 1.8rem; margin-bottom: 5px; }
.cta-text p { color: var(--clr-text-muted); margin: 0; }

/* ========================================= */
/* CASE STUDY MODAL STYLES                   */
/* ========================================= */
.case-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.case-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,15,0.9);
    backdrop-filter: blur(10px);
}
.case-modal-container {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    background: #111114;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.case-modal-close {
    position: absolute;
    top: 20px; right: 20px;
    z-index: 10;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s ease;
}
.case-modal-close:hover { background: var(--clr-brand-pink); }

.case-modal-layout {
    display: flex;
    width: 100%;
    height: 100%;
}
.case-modal-left {
    width: 40%;
    padding: 50px;
    overflow-y: auto;
    background: rgba(20,20,25,0.5);
    border-right: 1px solid rgba(255,255,255,0.05);
    scrollbar-width: none; /* Hide scrollbar */
}
.case-modal-left::-webkit-scrollbar { display: none; }

.case-modal-right {
    width: 60%;
    padding: 50px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--clr-brand-pink) transparent;
}
.case-modal-right::-webkit-scrollbar { width: 6px; }
.case-modal-right::-webkit-scrollbar-thumb { background: var(--clr-brand-pink); border-radius: 10px; }

/* Left Column Elements */
.case-breadcrumbs {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}
.case-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.case-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}
.case-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.case-stat-box { display: flex; flex-direction: column; }
.case-stat-val { font-size: 1.5rem; font-weight: 700; color: var(--clr-brand-pink); }
.case-stat-label { font-size: 0.8rem; color: var(--clr-text-muted); text-transform: uppercase; }

.case-text-block { margin-bottom: 30px; }
.case-text-block h4 { font-size: 1.2rem; margin-bottom: 15px; color: #fff; }
.case-text-block p { color: var(--clr-text-muted); line-height: 1.6; }
.case-results-list { list-style: none; padding: 0; }
.case-results-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.9);
}
.case-results-list svg {
    width: 20px; height: 20px;
    color: #2ecc71;
    flex-shrink: 0;
    margin-top: 2px;
}

.case-nav-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.case-nav-btn {
    background: transparent;
    border: none;
    color: var(--clr-text-muted);
    font-family: inherit;
    display: flex; align-items: center; gap: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}
.case-nav-btn:hover { color: #fff; }
.case-nav-btn svg { width: 18px; height: 18px; }

/* Right Column Elements */
.case-main-visual {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}
.case-main-visual img { width: 100%; height: 100%; object-fit: cover; }
.case-gallery-slider {
    margin-bottom: 50px;
}
.case-gallery-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}
.case-gallery-track::-webkit-scrollbar { display: none; }
.gallery-thumb {
    width: 150px; height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}
.gallery-thumb.active { opacity: 1; border-color: var(--clr-brand-pink); }
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.case-stages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}
.stage-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
}
.stage-icon-box {
    width: 40px; height: 40px;
    background: rgba(200,80,192,0.2);
    color: var(--clr-brand-pink);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.2rem;
    margin-bottom: 15px;
}
.stage-card h5 { margin-bottom: 10px; font-size: 1.1rem; }
.stage-card p { color: var(--clr-text-muted); font-size: 0.9rem; line-height: 1.5; margin: 0; }

.case-testimonial {
    background: rgba(20,20,25,0.8);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}
.quote-icon {
    position: absolute;
    top: 20px; left: 30px;
    font-size: 4rem;
    color: rgba(200,80,192,0.2);
    font-family: serif;
    line-height: 1;
}
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-author img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author h5 { margin: 0 0 5px; font-size: 1rem; }
.testimonial-author span { color: var(--clr-text-muted); font-size: 0.85rem; }

@media (max-width: 1024px) {
    .port-card-content { grid-template-columns: 1fr; }
    .case-modal-layout { flex-direction: column; }
    .case-modal-left, .case-modal-right { width: 100%; }
    .case-modal-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .case-modal-container { height: 95vh; overflow-y: auto; }
}
@media (max-width: 768px) {
    .portfolio-main-title { font-size: 2.5rem; }
    .category-stats-row { flex-direction: column; gap: 20px; }
    .portfolio-cta-banner { flex-direction: column; text-align: center; gap: 30px; }
    .cta-banner-content { flex-direction: column; }
    .case-stages-grid { grid-template-columns: 1fr; }
    .case-stats-grid { grid-template-columns: 1fr; }
}


/* --- Dynamic Video Portfolio Rules --- */
.case-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 25px;
}
.case-video-wrapper iframe,
.case-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}
.file-protocol-warning {
    position: relative;
    margin-top: 15px;
    background: rgba(30, 20, 10, 0.95);
    border: 1px solid #f39c12;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.9rem;
    z-index: 100;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}
.file-protocol-warning a {
    color: #f39c12;
    text-decoration: underline;
    font-weight: 600;
}
.file-protocol-warning code {
    background: rgba(255,255,255,0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: #00ffcc;
}

/* --- Video thumbnail overlay rules --- */
.gallery-thumb.video-thumb {
    position: relative;
}
.thumb-video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2;
}
.gallery-thumb.video-thumb:hover .thumb-video-overlay {
    background: rgba(0, 0, 0, 0.2);
}
.thumb-video-overlay svg {
    transition: transform 0.3s ease;
}
.gallery-thumb.video-thumb:hover .thumb-video-overlay svg {
    transform: scale(1.15);
}

/* ========================================= */
/* SMM CASE STUDY INTERACTIVE MOCKUPS        */
/* ========================================= */

.device-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
    flex-wrap: wrap;
}
.device-tab-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--clr-text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.device-tab-btn:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.15);
}
.device-tab-btn.active {
    background: var(--clr-brand-pink);
    border-color: var(--clr-brand-pink);
    color: #fff;
    box-shadow: 0 0 15px rgba(200, 80, 192, 0.4);
}

/* Macbook Mockup Frame */
.mockup-laptop {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
}
.laptop-screen-container {
    background: #09090b;
    border: 12px solid #1f1f23;
    border-bottom: 16px solid #1f1f23;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.laptop-camera {
    width: 6px;
    height: 6px;
    background: #111;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.laptop-screen-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #000;
}
.laptop-screen-content img {
    width: 100%;
    display: block;
}
.laptop-keyboard-base {
    height: 14px;
    background: #a1a1aa; /* Silver/gray metallic base */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    position: relative;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}
.laptop-keyboard-notch {
    width: 80px;
    height: 6px;
    background: rgba(0,0,0,0.25);
    margin: 0 auto;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* iPad Mockup Frame */
.mockup-tablet {
    width: 100%;
    max-width: 440px;
    margin: 0 auto 20px;
}
.tablet-screen-container {
    background: #000;
    border: 16px solid #1f1f23;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.tablet-screen-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #000;
}
.tablet-screen-content img {
    width: 100%;
    display: block;
}

/* iPhone Mockup Frame */
.mockup-phone {
    width: 100%;
    max-width: 290px;
    margin: 0 auto 20px;
}
.phone-screen-container {
    background: #000;
    border: 10px solid #1c1c1e;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    position: relative;
    aspect-ratio: 9 / 19.5;
    overflow: hidden;
    outline: 1px solid rgba(255,255,255,0.05);
}
.phone-notch {
    width: 110px;
    height: 25px;
    background: #1c1c1e;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.phone-screen-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #000;
    scrollbar-width: none;
}
.phone-screen-content::-webkit-scrollbar { display: none; }
.phone-screen-content img {
    width: 100%;
    display: block;
}
.phone-home-indicator {
    width: 110px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Brandbook & Case Style Guide Card */
.case-style-guide {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
}
.case-style-title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    border-left: 3px solid var(--clr-brand-pink);
    padding-left: 10px;
    font-weight: 600;
}
.style-colors-list {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.style-color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 70px;
}
.style-color-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}
.style-color-hex {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    font-family: monospace;
}
.style-color-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.style-fonts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.style-font-item {
    background: rgba(255,255,255,0.02);
    padding: 10px 15px;
    border-radius: 10px;
    border-left: 3px solid #60a5fa;
}
.style-font-family {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}
.style-font-role {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}
.style-grid-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

/* Glassmorphic SMM Stats Card Grid */
.case-results-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}
.case-result-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.case-result-card:hover {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
}
.case-result-card-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.12;
    z-index: 1;
    top: -20px;
    right: -20px;
}
.case-result-card-content {
    position: relative;
    z-index: 2;
}
.case-result-val {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 5px;
}
.case-result-lbl {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* ========================================= */
/* BEHANCE-STYLE SMM PORTFOLIO PRESENTATION   */
/* ========================================= */
.behance-section {
    margin-bottom: 50px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.behance-section-header {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid var(--clr-brand-pink);
    padding-left: 12px;
}
.behance-hero-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
.behance-hero-img {
    width: 100%;
    height: auto;
    display: block;
}
.behance-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: #000;
    padding: 20px;
    border-radius: 12px;
}
.behance-grid-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.behance-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.behance-grid-card:hover img {
    transform: scale(1.05);
}
.behance-grid-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 10px;
}
.behance-grid-card:hover .behance-grid-card-overlay {
    opacity: 1;
}
.behance-grid-card-tag {
    font-size: 0.75rem;
    color: #fff;
    background: var(--clr-brand-pink);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}
.behance-dual-mockup {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.behance-phone-mockup {
    width: 240px;
    aspect-ratio: 9 / 19.5;
    background: #000;
    border: 8px solid #1c1c1e;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.behance-phone-notch {
    width: 90px;
    height: 20px;
    background: #1c1c1e;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 5;
}
.behance-phone-screen {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
}
.behance-phone-screen::-webkit-scrollbar {
    display: none;
}
.behance-phone-screen img {
    width: 100%;
    display: block;
}
.behance-browser-frame {
    background: #18181b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
.behance-browser-top {
    background: #27272a;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.behance-browser-dots {
    display: flex;
    gap: 6px;
}
.behance-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.behance-dot.red { background: #ff5f56; }
.behance-dot.yellow { background: #ffbd2e; }
.behance-dot.green { background: #27c93f; }
.behance-browser-address {
    background: #18181b;
    color: var(--clr-text-muted);
    font-size: 0.75rem;
    padding: 2px 15px;
    border-radius: 4px;
    flex-grow: 1;
    max-width: 300px;
    font-family: monospace;
}
.behance-browser-content {
    width: 100%;
    max-height: 380px;
    overflow-y: auto;
    background: #000;
}
.behance-browser-content img {
    width: 100%;
    display: block;
}
