/* =========================================================
   CLICK GROW DIGITAL
   PORTFOLIO PAGE
   PREMIUM GREEN + OFF-WHITE
========================================================= */


/* =========================================================
   PORTFOLIO HERO
========================================================= */

.portfolio-hero {

    position: relative;

    min-height: 86vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 145px 0 90px;

    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(34,197,94,.13),
            transparent 34%
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(34,197,94,.07),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f8faf9,
            #ffffff
        );

}


.portfolio-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(34,197,94,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(34,197,94,.035) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    pointer-events: none;

}


.portfolio-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 65px;

    align-items: center;

}


.portfolio-hero-content {

    position: relative;

    z-index: 3;

}


.portfolio-hero-content h1 {

    max-width: 760px;

    margin: 24px 0;

    font-size:
        clamp(48px, 5.6vw, 74px);

    line-height: 1.03;

    letter-spacing: -3px;

}


.portfolio-hero-content p {

    max-width: 690px;

    margin: 0;

    color: #64748b;

    font-size: 16px;

    line-height: 1.85;

}


/* =========================================================
   HERO META
========================================================= */

.portfolio-hero-meta {

    display: flex;

    align-items: center;

    gap: 35px;

    margin-top: 38px;

    flex-wrap: wrap;

}


.portfolio-hero-meta > div {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.portfolio-hero-meta strong {

    color: #111827;

    font-size: 28px;

    line-height: 1;

}


.portfolio-hero-meta span {

    color: #64748b;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .5px;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.portfolio-hero-visual {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-project-orbit {

    position: absolute;

    border: 1px solid
        rgba(34,197,94,.15);

    border-radius: 50%;

    pointer-events: none;

}


.hero-project-orbit.orbit-one {

    width: 470px;

    height: 470px;

    transform:
        rotate(-20deg)
        scaleY(.62);

    animation:
        portfolioOrbitOne 18s linear infinite;

}


.hero-project-orbit.orbit-two {

    width: 590px;

    height: 590px;

    border-style: dashed;

    border-color:
        rgba(34,197,94,.09);

    transform:
        rotate(25deg)
        scaleY(.43);

    animation:
        portfolioOrbitTwo 25s linear infinite reverse;

}


.hero-project-core {

    position: relative;

    z-index: 5;

    width: 220px;

    height: 220px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(34,197,94,.15);

    border-radius: 50%;

    background:
        rgba(255,255,255,.78);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 30px 70px
        rgba(15,23,42,.10);

    animation:
        portfolioCoreFloat 5s ease-in-out infinite;

}


.hero-project-core i {

    width: 56px;

    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 13px;

    border-radius: 16px;

    background:
        #ecfdf3;

    color: #16a34a;

    font-size: 22px;

}


.hero-project-core span {

    color: #64748b;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.hero-project-core strong {

    margin-top: 7px;

    color: #111827;

    font-size: 23px;

    line-height: 1.05;

    letter-spacing: 1px;

    text-align: center;

}


/* =========================================================
   HERO TAGS
========================================================= */

.hero-project-tag {

    position: absolute;

    z-index: 7;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 15px;

    border:
        1px solid
        rgba(255,255,255,.85);

    border-radius: 14px;

    background:
        rgba(255,255,255,.78);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 15px 35px
        rgba(15,23,42,.08);

    color: #334155;

    font-size: 10px;

    font-weight: 700;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


.hero-project-tag i {

    color: #16a34a;

}


.hero-project-tag:hover {

    transform:
        translateY(-7px)
        scale(1.05);

    border-color:
        rgba(34,197,94,.28);

    box-shadow:
        0 20px 45px
        rgba(22,101,52,.12);

}


.tag-one {

    top: 75px;

    left: 6%;

    animation:
        portfolioTagOne 4.5s ease-in-out infinite;

}


.tag-two {

    top: 65px;

    right: 8%;

    animation:
        portfolioTagTwo 5s ease-in-out infinite;

}


.tag-three {

    bottom: 80px;

    left: 8%;

    animation:
        portfolioTagThree 5.2s ease-in-out infinite;

}


.tag-four {

    right: 5%;

    bottom: 75px;

    animation:
        portfolioTagFour 4.8s ease-in-out infinite;

}


/* =========================================================
   FEATURED WORK
========================================================= */

.featured-work {

    position: relative;

    overflow: hidden;

}


.featured-work .section-header {

    max-width: 780px;

    margin: 0 auto;

    text-align: center;

}


.featured-work .section-header h2 {

    margin: 18px 0;

}


.featured-work .section-header p {

    color: #64748b;

}


/* =========================================================
   FILTER
========================================================= */

.portfolio-filter {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin: 55px 0 50px;

}


.portfolio-filter .badge {

    min-height: 40px;

    padding: 10px 19px;

    border:
        1px solid
        rgba(34,197,94,.10);

    border-radius: 50px;

    background:
        rgba(255,255,255,.72);

    color: #475569;

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}


.portfolio-filter .badge:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(34,197,94,.25);

    color: #16a34a;

}


.portfolio-filter .badge.active {

    background:
        #16a34a;

    border-color:
        #16a34a;

    color: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(22,163,74,.18);

}


/* =========================================================
   PORTFOLIO GRID
========================================================= */

.portfolio-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 28px;

}


/* =========================================================
   PORTFOLIO CARD
========================================================= */

.portfolio-card {

    position: relative;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.55);

    border-radius: 28px;

    background:
        rgba(255,255,255,.48);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 12px 35px
        rgba(15,23,42,.05);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;

}


.portfolio-card:hover {

    transform:
        translateY(-11px);

    border-color:
        rgba(34,197,94,.18);

    box-shadow:
        0 25px 60px
        rgba(15,23,42,.10);

}


/* =========================================================
   PROJECT IMAGE
========================================================= */

.project-image {

    position: relative;

    height: 285px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    padding: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(34,197,94,.10),
            rgba(248,250,249,.92)
        );

}


.project-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,255,255,.35),
            transparent 65%
        );

    pointer-events: none;

}


.project-image img {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center;

    transition:
        transform .55s ease;

    filter:
        drop-shadow(
            0 15px 25px
            rgba(15,23,42,.07)
        );

}


.portfolio-card:hover
.project-image img {

    transform:
        scale(1.055);

}


/* =========================================================
   PROJECT NUMBER
========================================================= */

.project-number {

    position: absolute;

    z-index: 5;

    top: 16px;

    left: 16px;

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.80);

    border-radius: 11px;

    background:
        rgba(255,255,255,.80);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    color: #16a34a;

    font-size: 10px;

    font-weight: 850;

}


/* =========================================================
   PROJECT RESULT BADGE
========================================================= */

.project-result-badge {

    position: absolute;

    z-index: 6;

    right: 14px;

    bottom: 14px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 9px 12px;

    border-radius: 50px;

    background:
        rgba(22,163,74,.94);

    color: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(22,163,74,.22);

    font-size: 9px;

    font-weight: 800;

}


.project-result-badge i {

    font-size: 9px;

}


/* =========================================================
   PROJECT CONTENT
========================================================= */

.project-content {

    position: relative;

    padding: 26px 27px 28px;

}


.project-content > span {

    display: block;

    margin-bottom: 10px;

    color: #16a34a;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;

}


.project-content h3 {

    margin: 0 0 11px;

    color: #111827;

    font-size: 21px;

    line-height: 1.2;

    letter-spacing: -.5px;

}


.project-content p {

    min-height: 67px;

    margin: 0;

    color: #64748b;

    font-size: 12px;

    line-height: 1.75;

}


/* =========================================================
   PROJECT HIGHLIGHT
========================================================= */

.project-highlight {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-top: 16px;

    padding: 12px 13px;

    border:
        1px solid
        rgba(34,197,94,.10);

    border-radius: 12px;

    background:
        rgba(236,253,243,.65);

}


.project-highlight i {

    margin-top: 2px;

    color: #16a34a;

    font-size: 11px;

}


.project-highlight strong {

    color: #166534;

    font-size: 10px;

    line-height: 1.5;

}


/* =========================================================
   PROJECT LINK
========================================================= */

.project-link {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 21px;

    padding-top: 15px;

    border-top:
        1px solid
        rgba(15,23,42,.06);

    color: #64748b;

    font-size: 9px;

    font-weight: 700;

}


.project-link i {

    color: #16a34a;

    transition:
        transform .3s ease;

}


.portfolio-card:hover
.project-link i {

    transform:
        translate(3px,-3px);

}


/* =========================================================
   FEATURED RESULT CARD
========================================================= */

.featured-result-card {

    border-color:
        rgba(34,197,94,.14);

}


.featured-result-card:hover {

    border-color:
        rgba(34,197,94,.28);

}


/* =========================================================
   PROJECT RESULTS
========================================================= */

.project-results {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.15),
            rgba(248,250,249,.80)
        );

}


.project-results .section-header {

    max-width: 760px;

    margin: 0 auto;

    text-align: center;

}


.project-results .section-header h2 {

    margin: 18px 0;

}


.project-results .section-header p {

    color: #64748b;

}


.project-results .results-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 22px;

    margin-top: 60px;

}


.project-results .card {

    position: relative;

    padding: 35px 25px;

    text-align: center;

    border:
        1px solid
        rgba(255,255,255,.55);

    border-radius: 25px;

    background:
        rgba(255,255,255,.48);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 10px 30px
        rgba(15,23,42,.045);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.project-results .card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(34,197,94,.20);

    box-shadow:
        0 25px 55px
        rgba(15,23,42,.08);

}


.project-results h2 {

    margin: 0 0 10px;

    color: #16a34a;

    font-size:
        clamp(42px,4vw,58px);

    line-height: 1;

}


.project-results p {

    margin: 0;

    color: #475569;

    font-size: 11px;

    font-weight: 700;

}


/* =========================================================
   CREATIVE PROCESS
========================================================= */

.portfolio-process {

    position: relative;

    overflow: hidden;

}


.portfolio-process::before {

    content: "";

    position: absolute;

    left: -180px;

    bottom: -180px;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(34,197,94,.08),
            transparent 70%
        );

    pointer-events: none;

}


.portfolio-process .section-header {

    max-width: 760px;

    margin: 0 auto;

    text-align: center;

}


.portfolio-process .section-header h2 {

    margin: 18px 0;

}


.portfolio-process .section-header p {

    color: #64748b;

}


.portfolio-process .process-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 24px;

    margin-top: 60px;

}


.portfolio-process .card {

    position: relative;

    min-height: 245px;

    padding: 30px 25px;

    text-align: center;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.55);

    border-radius: 25px;

    background:
        rgba(255,255,255,.48);

    backdrop-filter: blur(24px);

    -webkit-backdrop-filter: blur(24px);

    box-shadow:
        0 10px 30px
        rgba(15,23,42,.045);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.portfolio-process .card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(34,197,94,.20);

    box-shadow:
        0 25px 55px
        rgba(15,23,42,.08);

}


.portfolio-process .card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #16a34a,
            #4ade80
        );

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform .4s ease;

}


.portfolio-process .card:hover::before {

    transform:
        scaleX(1);

}


.process-number {

    display: block;

    margin-bottom: 15px;

    color:
        rgba(22,163,74,.22);

    font-size: 54px;

    font-weight: 850;

    line-height: 1;

}


.portfolio-process .card h3 {

    margin: 0 0 13px;

    color: #111827;

    font-size: 18px;

}


.portfolio-process .card p {

    margin: 0;

    color: #64748b;

    font-size: 11px;

    line-height: 1.75;

}


/* =========================================================
   CLIENT SUCCESS
========================================================= */

.client-success {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.15),
            rgba(248,250,249,.80)
        );

}


.client-success .section-header {

    max-width: 760px;

    margin: 0 auto;

    text-align: center;

}


.client-success .section-header h2 {

    margin: 18px 0;

}


.client-success .section-header p {

    color: #64748b;

}


.success-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;

    margin-top: 60px;

}


.success-grid .card {

    position: relative;

    padding: 32px 25px;

    text-align: center;

    border:
        1px solid
        rgba(255,255,255,.55);

    border-radius: 25px;

    background:
        rgba(255,255,255,.48);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 10px 30px
        rgba(15,23,42,.045);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.success-grid .card::before {

    content: "✓";

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background:
        rgba(22,163,74,.10);

    color: #16a34a;

    font-size: 22px;

    font-weight: 800;

}


.success-grid .card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(34,197,94,.20);

    box-shadow:
        0 25px 55px
        rgba(15,23,42,.08);

}


.success-grid h3 {

    margin: 0 0 10px;

    color: #111827;

    font-size: 17px;

}


.success-grid p {

    margin: 0;

    color: #64748b;

    font-size: 11px;

    line-height: 1.7;

}


/* =========================================================
   PORTFOLIO CTA
========================================================= */

.portfolio-cta {

    position: relative;

    overflow: hidden;

    text-align: center;

}


.portfolio-cta::before {

    content: "";

    position: absolute;

    top: -180px;

    right: -180px;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(34,197,94,.12),
            transparent 70%
        );

    pointer-events: none;

}


.portfolio-cta::after {

    content: "";

    position: absolute;

    bottom: -180px;

    left: -180px;

    width: 380px;

    height: 380px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(34,197,94,.07),
            transparent 70%
        );

    pointer-events: none;

}


.portfolio-cta .glass {

    position: relative;

    z-index: 2;

    padding: 85px 65px;

    border:
        1px solid
        rgba(255,255,255,.55);

    border-radius: 34px;

    background:
        rgba(255,255,255,.48);

    backdrop-filter: blur(30px);

    -webkit-backdrop-filter: blur(30px);

    box-shadow:
        0 25px 65px
        rgba(15,23,42,.08);

}


.portfolio-cta .section-header {

    max-width: 820px;

    margin: 0 auto;

}


.portfolio-cta h2 {

    margin: 20px 0;

}


.portfolio-cta p {

    max-width: 760px;

    margin:
        0 auto 35px;

    color: #64748b;

}


.portfolio-cta .hero-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    flex-wrap: wrap;

}


.portfolio-cta .btn,
.portfolio-cta .btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

}


/* =========================================================
   HOVER GLOW
========================================================= */

.portfolio-card::after {

    content: "";

    position: absolute;

    inset: auto -30% -80% -30%;

    height: 180px;

    background:
        radial-gradient(
            circle,
            rgba(34,197,94,.10),
            transparent 70%
        );

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .45s ease;

}


.portfolio-card:hover::after {

    opacity: 1;

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes portfolioOrbitOne {

    from {

        transform:
            rotate(-20deg)
            scaleY(.62);

    }

    to {

        transform:
            rotate(340deg)
            scaleY(.62);

    }

}


@keyframes portfolioOrbitTwo {

    from {

        transform:
            rotate(25deg)
            scaleY(.43);

    }

    to {

        transform:
            rotate(-335deg)
            scaleY(.43);

    }

}


@keyframes portfolioCoreFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

}


@keyframes portfolioTagOne {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-8px);

    }

}


@keyframes portfolioTagTwo {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(8px);

    }

}


@keyframes portfolioTagThree {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(7px);

    }

}


@keyframes portfolioTagFour {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-7px);

    }

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width:1200px) {

    .portfolio-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .success-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .portfolio-process .process-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .project-results .results-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:992px) {

    .portfolio-hero {

        min-height: auto;

        padding: 125px 0 75px;

    }


    .portfolio-hero-grid {

        grid-template-columns: 1fr;

        gap: 25px;

        text-align: center;

    }


    .portfolio-hero-content {

        max-width: 780px;

        margin: 0 auto;

    }


    .portfolio-hero-content p {

        margin-left: auto;

        margin-right: auto;

    }


    .portfolio-hero-meta {

        justify-content: center;

    }


    .portfolio-hero-visual {

        min-height: 450px;

    }


    .portfolio-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .project-image {

        height: 260px;

    }


    .portfolio-filter {

        margin:
            45px 0;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px) {

    .portfolio-hero {

        padding:
            105px 0 55px;

    }


    .portfolio-hero-content h1 {

        font-size: 45px;

        letter-spacing: -2px;

    }


    .portfolio-hero-content p {

        font-size: 14px;

    }


    .portfolio-hero-meta {

        gap: 22px;

    }


    .portfolio-hero-meta strong {

        font-size: 24px;

    }


    .portfolio-hero-meta span {

        font-size: 9px;

    }


    .portfolio-hero-visual {

        min-height: 380px;

    }


    .hero-project-orbit.orbit-one {

        width: 340px;

        height: 340px;

    }


    .hero-project-orbit.orbit-two {

        width: 430px;

        height: 430px;

    }


    .hero-project-core {

        width: 170px;

        height: 170px;

    }


    .hero-project-core i {

        width: 45px;

        height: 45px;

        margin-bottom: 9px;

        border-radius: 13px;

        font-size: 17px;

    }


    .hero-project-core strong {

        font-size: 18px;

    }


    .hero-project-tag {

        padding: 8px 10px;

        font-size: 8px;

    }


    .tag-one {

        top: 45px;

        left: 0;

    }


    .tag-two {

        top: 35px;

        right: 0;

    }


    .tag-three {

        bottom: 40px;

        left: 0;

    }


    .tag-four {

        right: 0;

        bottom: 35px;

    }


    .portfolio-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .portfolio-card {

        border-radius: 24px;

    }


    .project-image {

        height: 255px;

    }


    .project-content {

        padding:
            24px 22px 25px;

    }


    .project-content h3 {

        font-size: 21px;

    }


    .project-content p {

        min-height: auto;

        font-size: 12px;

    }


    .project-results .results-grid {

        grid-template-columns:
            repeat(2,1fr);

        gap: 12px;

        margin-top: 45px;

    }


    .project-results .card {

        padding:
            28px 15px;

    }


    .project-results h2 {

        font-size: 42px;

    }


    .portfolio-process .process-grid {

        grid-template-columns:
            repeat(2,1fr);

        gap: 14px;

        margin-top: 45px;

    }


    .portfolio-process .card {

        min-height: 220px;

        padding:
            27px 18px;

    }


    .success-grid {

        grid-template-columns:
            1fr;

        gap: 14px;

        margin-top: 45px;

    }


    .success-grid .card {

        padding:
            28px 20px;

    }


    .portfolio-cta .glass {

        padding:
            55px 25px;

        border-radius: 27px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:480px) {

    .portfolio-hero-content h1 {

        font-size: 37px;

        letter-spacing: -1.5px;

    }


    .portfolio-hero-content p {

        font-size: 13px;

        line-height: 1.7;

    }


    .portfolio-hero-meta {

        gap: 15px;

    }


    .portfolio-hero-meta > div {

        min-width: 75px;

    }


    .portfolio-hero-meta strong {

        font-size: 21px;

    }


    .portfolio-hero-meta span {

        font-size: 8px;

    }


    .portfolio-hero-visual {

        min-height: 330px;

    }


    .hero-project-orbit.orbit-one {

        width: 270px;

        height: 270px;

    }


    .hero-project-orbit.orbit-two {

        width: 345px;

        height: 345px;

    }


    .hero-project-core {

        width: 140px;

        height: 140px;

    }


    .hero-project-core i {

        width: 37px;

        height: 37px;

        font-size: 14px;

    }


    .hero-project-core span {

        font-size: 7px;

    }


    .hero-project-core strong {

        font-size: 15px;

    }


    .hero-project-tag {

        transform:
            scale(.88);

    }


    .hero-project-tag:hover {

        transform:
            translateY(-5px)
            scale(.94);

    }


    .portfolio-filter {

        flex-direction: column;

        align-items: stretch;

        gap: 8px;

    }


    .portfolio-filter .badge {

        width: 100%;

        justify-content: center;

    }


    .project-image {

        height: 235px;

        padding: 20px;

    }


    .project-number {

        width: 32px;

        height: 32px;

        top: 12px;

        left: 12px;

    }


    .project-result-badge {

        right: 10px;

        bottom: 10px;

        padding: 8px 10px;

        font-size: 8px;

    }


    .project-content > span {

        font-size: 8px;

    }


    .project-content h3 {

        font-size: 20px;

    }


    .project-content p {

        font-size: 11px;

    }


    .project-link {

        font-size: 8px;

    }


    .project-results .results-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .project-results h2 {

        font-size: 36px;

    }


    .project-results p {

        font-size: 9px;

    }


    .portfolio-process .process-grid {

        grid-template-columns:
            1fr;

    }


    .portfolio-process .card {

        min-height: auto;

    }


    .process-number {

        font-size: 45px;

    }


    .portfolio-cta h2 {

        font-size: 31px;

    }


    .portfolio-cta p {

        font-size: 13px;

    }


    .portfolio-cta .hero-buttons {

        flex-direction: column;

        width: 100%;

    }


    .portfolio-cta .btn,
    .portfolio-cta .btn-outline {

        width: 100%;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-project-orbit,
    .hero-project-core,
    .hero-project-tag {

        animation: none !important;

    }

}


/* =========================================================
   END PORTFOLIO CSS
========================================================= */