/* homepage.css */

body {
    background-color: #F8F8F8;
}

/**************
*****************
*************** HERO ── 
****************
******************/

.hero {
    padding: 60px 60px 0;
    max-width: 1440px;
    margin: 0 auto;
    align-items: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-overlay{
    position: relative;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(0.8rem, 4vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #181819;
    margin-bottom: 24px;
}

.hero-tag span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-tag .sep {
    color: #181819;
}

.hero-headline {
    font-family: var(--secondary-font);
    font-weight: 900;
    font-size: clamp(72px, 9vw, 120px);
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--text-primary);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 10px 16px;
    margin-bottom: 10px;
    text-align: center;
}

.hero-headline .text{
    overflow: hidden;
    display: inline-block;
}

.hero-headline .gold {
    background-image: linear-gradient(to left, #A16C16, #E6B554);
    background-clip: text;
    color: transparent;
}

.hero-headline > div{
    display: flex;
    gap: 20px;
}

.hero-pill {
    background: #fff;
    border-radius: 16px;
    margin: 0 6px;
    height: 100px;
    width: fit-content;
    overflow: hidden;
}

.hero-pill img{
    object-fit: cover;
    width: 150px;
}

.hero-pill-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.hero-badge {
    border-radius: 16px;
    padding: 4px 10px;
    gap: 6px;
    background: #fff;
    margin: 0 6px;
    height: 99px;
    overflow: hidden;
    width: 200px;
}

.hero-badge-company-images{
    display: flex;
    position: relative;
}

.hero-badge-company-images .img{
    object-fit: contain;
    position: absolute;
    right: -150px;
    width: 150px;
}

.hero-badge-company-images .c-image-1{
    margin-top: 25px;
}

.hero-sub {
    font-size: clamp(0.8rem, 4vw, 1.25rem);
    color: #8D8D8D;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 16px 0 32px;
    font-weight: 500;
    width: 60%;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 50px;
}

.hero-ctas .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #A16C16, #E6B554);
    border: 2px solid #A16C16;
    color: #fff;
    padding: 10px 14px 10px 34px;
    font-size: clamp(0.85rem, 4vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 55px;
    transition: all .2s;
    height: fit-content;
}

.hero-ctas .btn-primary:hover {
    background: var(--text-primary);
    color: var(--white);
    border-color: #000;
}

.hero-ctas .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #A16C16;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all .2s;
    background: transparent;
    color: #000;
    padding: 10px 14px 10px 34px;
    font-size: clamp(0.85rem, 4vw, 1.1rem);
    font-weight: 700;
    border-radius: 55px;
    height: fit-content;
}

.hero-ctas .btn-outline:hover {
    background: var(--text-primary);
    color: var(--white);
    background: linear-gradient(45deg, #A16C16, #E6B554);
}

.hero-ctas .btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    padding: 7px;
    background-color: #fff;
}

.hero-ctas .btn-icon img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-ctas .btn-primary:hover .btn-icon {
    background: var(--white);
    color: var(--text-primary);
}

/* ── HERO GALLERY ── */
.hero-gallery {
    display: flex;
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px 20px 0px;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.hero-gallery-item {
    overflow: hidden;
    background: var(--gray-bg);
    max-width: 450px;
    flex-shrink: 0;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: relative;
    border-radius: 12px;
    border: 3px solid #fff;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.19);
    transform: translateX(-10px);
}

.hero-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/**************
*****************
*************** Services Section ── 
****************
******************/

/* ── SERVICES SECTION ── */
.section {
    padding: 80px 60px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-full {
    padding: 80px 60px;
}

.section-full-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--secondary-font);
    font-size: clamp(42px, 5vw, 100px);
    text-transform: uppercase;
    line-height: 1;
    color: var(--text-primary);
    font-weight: 400;
}

.section-desc {
    max-width: 34%;
    text-align: left;
    font-size: clamp(0.9rem, 5vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── SERVICES GRID ── */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 100;
}

.services-grid .row{
    display: flex;
    gap: 20px;
}

.service-card {
    border: 1.5px solid var(--border);
    border-radius: 31.45px;
    padding: 32px 28px;
    background: var(--white);
    transition: all .25s;
    cursor: pointer;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.09);
    width: 33%;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(200, 168, 75, 0.12);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 8px 32px rgba(200, 168, 75, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 55px;
    background: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 27px;
    font-size: 22px;
    padding: 16px;
}

.service-icon img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-card.featured .service-icon {
    background: var(--golden-gradient);
    color: var(--white);
}

.service-card h3 {
    font-size: clamp(0.9rem, 5vw, 1.1rem);
    font-family: var(--accent-font);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-primary);
    border-top: 1.3px solid #E6E6E6;
    padding-top: 27px;
}

.service-card p {
    font-size: clamp(0.7rem, 5vw, 0.82rem);
    color: var(--text-secondary);
    line-height: 1.65;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: clamp(0.7rem, 5vw, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: transparent;
    background: var(--golden-gradient);
    background-clip: text;
}

.service-link:hover {
    color: var(--text-primary);
}

/**************
*****************
*************** Stats ── 
****************
******************/

/* ── STATS ── */
.stats-bar {
    padding: 50px 60px;
    position: relative;
    z-index: 999;
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 100px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--secondary-font);
    font-size: 7rem;
    line-height: 1;
    color: var(--text-primary);
}

.stat-label {
    font-size: clamp(0.8rem, 5vw, 1rem);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 6px;
}

.stats-bar .sep-line {
    width: 2px;
    height: auto;
    background-color: #E5E5E5;
}

/**************
*****************
*************** Portfolio Section ── 
****************
******************/

/* ── PORTFOLIO ── */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.portfolio-item .proj-img {
    overflow: hidden;
    background: var(--gray-bg);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: relative;
    border-radius: 12px;
    border: 3px solid #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    transform: translateX(-10px);
    margin-bottom: 16px;
}

.portfolio-item h3 {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: clamp(1.5rem, 5vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.portfolio-item:hover h3{
    background: var(--golden-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.portfolio-item p {
    font-size: clamp(0.8rem, 5vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.65;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 20px;
    border: 1px solid #BCBCBC;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #BCBCBC;
}

.view-portfolio {
    text-align: right;
    padding: 50px 0 20px;
}

.view-portfolio a {
    font-family: var(--secondary-font);
    font-size: clamp(1rem, 5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    transition: color .2s;
    background-image: var(--golden-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.view-portfolio a:hover {
    color: var(--gold);
}

/* ── CLIENTS ── */
.clients-bar {
    padding: 40px 60px;
}

.clients-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    flex-wrap: wrap;
}

.client-logo {
    width: 165px;
    height: auto;
    background: var(--gray-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: filter .2s;
}

.client-logo:hover {
    filter: brightness(0.6);
}

/* ── PROVEN RESULTS SECTION ── */
.proven-section {
    padding: 80px 60px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.proven-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.proven-header .section-title {
    max-width: 440px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero {
        padding: 40px 20px 0;
    }

    .section {
        padding: 60px 20px;
    }

    .section-full {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .stats-inner {
        gap: 40px;
    }

    .hero-gallery {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESPONSIVE — Group Crazy Pineapple Inc
   ============================================================ */

/* ── Mobile base (≤ 430px) ── */
@media (max-width: 430px) {

    .img-container {
        display: none;
    }

    /* ── Hero ── */
    .hero {
        padding: 28px 16px 0;
    }

    .hero-tag {
        gap: 8px;
        font-size: 0.65rem;
        letter-spacing: 0.08em;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 16px;
    }

    .hero-headline {
        font-size: clamp(44px, 12vw, 56px);
        gap: 8px 10px;
    }

    .hero-headline > div {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-pill {
        height: 60px;
        border-radius: 10px;
    }

    .hero-pill img {
        width: 90px;
    }

    .hero-badge {
        height: 60px;
        width: 120px;
        border-radius: 10px;
        padding: 4px 6px;
    }

    .hero-sub {
        font-size: 0.72rem;
        width: 90%;
        margin: 12px 0 24px;
        letter-spacing: 0.03em;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 32px;
        width: 100%;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline {
        width: 100%;
        justify-content: space-between;
        padding: 10px 12px 10px 24px;
        font-size: 0.8rem;
    }

    .hero-ctas .btn-icon {
        width: 36px;
        height: 36px;
    }

    /* ── Hero Gallery ── */
    .hero-gallery {
        gap: 14px;
        padding: 0 16px 16px;
    }

    .hero-gallery-item {
        max-width: 280px;
        min-width: 240px;
    }

    /* ── Services ── */
    .section-full {
        padding: 48px 16px;
    }

    .section-full-inner {
        max-width: 100%;
    }

    .section-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .section-title {
        font-size: clamp(36px, 10vw, 52px);
    }

    .section-desc {
        max-width: 100%;
        font-size: 0.75rem;
    }

    .services-grid {
        gap: 14px;
    }

    .services-grid .row {
        flex-direction: column;
        gap: 14px;
    }

    .service-card {
        width: 100%;
        border-radius: 20px;
        padding: 24px 20px;
    }

    .service-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 18px;
    }

    /* ── Stats ── */
    .stats-bar {
        padding: 36px 16px;
    }

    .stats-inner {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }

    .stats-bar .sep-line {
        width: 60px;
        height: 2px;
    }

    .stat-num {
        font-size: 4.5rem;
    }

    /* ── Portfolio ── */
    .proven-section {
        padding: 48px 16px;
        max-width: 100%;
    }

    .proven-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .proven-header .section-title {
        max-width: 100%;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .portfolio-item h3 {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }

    .view-portfolio {
        text-align: center;
        padding: 32px 0 10px;
    }

    .view-portfolio a {
        font-size: clamp(1rem, 5vw, 1.4rem);
    }

    /* ── Clients ── */
    .clients-bar {
        padding: 28px 16px;
    }

    .clients-inner {
        gap: 14px;
    }

    .client-logo {
        width: 120px;
    }
}

/* ── 360px ── */
@media (max-width: 360px) {
    .hero {
        padding: 20px 12px 0;
    }

    .hero-headline {
        font-size: clamp(36px, 11vw, 46px);
    }

    .hero-pill {
        height: 50px;
    }

    .hero-pill img {
        width: 76px;
    }

    .hero-badge {
        height: 50px;
        width: 100px;
    }

    .hero-sub {
        font-size: 0.65rem;
        width: 95%;
    }

    .stat-num {
        font-size: 3.8rem;
    }

    .client-logo {
        width: 100px;
    }
}

/* ── 390px ── */
@media (min-width: 361px) and (max-width: 390px) {

    .hero-headline {
        font-size: clamp(42px, 11.5vw, 52px);
    }

    .hero-pill {
        height: 56px;
    }

    .hero-pill img {
        width: 84px;
    }

    .hero-badge {
        height: 56px;
        width: 112px;
    }

    .stat-num {
        font-size: 4.2rem;
    }
}

/* ── 410px ── */
@media (min-width: 391px) and (max-width: 410px) {

    .hero-headline {
        font-size: clamp(46px, 11.8vw, 56px);
    }

    .hero-pill {
        height: 58px;
    }

    .hero-pill img {
        width: 88px;
    }

    .hero-badge {
        height: 58px;
        width: 116px;
    }

    .stat-num {
        font-size: 4.4rem;
    }
}

/* ── 430px ── */
@media (min-width: 411px) and (max-width: 430px) {

    .hero-headline {
        font-size: clamp(48px, 12vw, 58px);
    }

    .hero-pill {
        height: 62px;
    }

    .hero-pill img {
        width: 94px;
    }

    .hero-badge {
        height: 62px;
        width: 124px;
    }

    .stat-num {
        font-size: 4.6rem;
    }
}

/* ── Phone landscape ── */
@media (max-height: 500px) and (min-width: 600px) and (orientation: landscape) {

    .img-container {
        display: none;
    }

    .hero-section .section-container {
        min-height: 100svh;
    }

    .hero {
        padding: 20px 40px 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-tag {
        width: 100%;
        justify-content: center;
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    .hero-headline {
        font-size: clamp(40px, 7vw, 60px);
        gap: 6px 10px;
    }

    .hero-pill {
        height: 55px;
    }

    .hero-pill img {
        width: 82px;
    }

    .hero-badge {
        height: 55px;
        width: 110px;
    }

    .hero-sub {
        font-size: 0.7rem;
        width: 70%;
        margin: 10px 0 18px;
    }

    .hero-ctas {
        flex-direction: row;
        margin-bottom: 20px;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline {
        padding: 8px 12px 8px 20px;
        font-size: 0.75rem;
    }

    .hero-ctas .btn-icon {
        width: 32px;
        height: 32px;
    }

    .hero-gallery-item {
        max-width: 320px;
        min-width: 260px;
    }

    .section-full {
        padding: 48px 32px;
    }

    .services-grid .row {
        flex-direction: row;
    }

    .service-card {
        width: 33%;
    }

    .stats-inner {
        flex-direction: row;
        gap: 40px;
    }

    .stats-bar .sep-line {
        width: 2px;
        height: auto;
    }

    .stat-num {
        font-size: 4rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

/* ── Tablet portrait (431px – 1023px) ── */
@media (min-width: 431px) and (max-width: 1023px) and (orientation: portrait) {

    .img-container img {
        width: 30%;
        top: 14px;
    }

    .hero {
        padding: 40px 36px 0;
    }

    .hero-tag {
        font-size: 0.75rem;
        gap: 10px;
    }

    .hero-headline {
        font-size: clamp(52px, 9vw, 82px);
        gap: 8px 12px;
    }

    .hero-pill {
        height: 76px;
        border-radius: 12px;
    }

    .hero-pill img {
        width: 114px;
    }

    .hero-badge {
        height: 76px;
        width: 160px;
        border-radius: 12px;
    }

    .hero-sub {
        font-size: 0.88rem;
        width: 78%;
        margin: 14px 0 28px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 80%;
        margin-bottom: 40px;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline {
        width: 100%;
        justify-content: space-between;
        padding: 10px 14px 10px 28px;
        font-size: 0.88rem;
    }

    .hero-gallery {
        gap: 20px;
        padding: 0 16px 16px;
    }

    .hero-gallery-item {
        max-width: 360px;
        min-width: 300px;
    }

    .section-full {
        padding: 60px 32px;
    }

    .section-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 36px;
    }

    .section-title {
        font-size: clamp(40px, 8vw, 72px);
    }

    .section-desc {
        max-width: 100%;
        font-size: 0.82rem;
    }

    .services-grid .row {
        flex-direction: column;
        gap: 16px;
    }

    .service-card {
        width: 100%;
    }

    @media (min-width: 680px) {
        .services-grid .row {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .service-card {
            width: calc(50% - 8px);
        }
    }

    .stats-bar {
        padding: 44px 32px;
    }

    .stats-inner {
        gap: 48px;
    }

    .stat-num {
        font-size: 5rem;
    }

    .proven-section {
        padding: 60px 32px;
        max-width: 100%;
    }

    .proven-header {
        flex-direction: column;
        gap: 16px;
    }

    .proven-header .section-title {
        max-width: 100%;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .portfolio-item h3 {
        font-size: clamp(1.4rem, 4vw, 2.4rem);
    }

    .view-portfolio {
        text-align: center;
    }

    .clients-bar {
        padding: 32px 32px;
    }

    .client-logo {
        width: 130px;
    }
}

/* ── Tablet landscape (768px – 1199px) ── */
@media (min-width: 768px) and (max-width: 1199px) and (orientation: landscape) {

    .img-container img {
        width: 28%;
        top: 16px;
    }

    .site-header {
        padding: 0 40px;
        height: 76px;
    }

    .logo-zone .logo {
        width: 60px;
    }

    .nav-home-tab a {
        padding: 26px 10px;
        font-size: 1rem;
    }

    .nav-links {
        display: flex;
        gap: 24px;
        padding: 0 20px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .contact-link {
        font-size: 0.9rem;
    }

    .hero {
        padding: 44px 48px 0;
    }

    .hero-tag {
        font-size: 0.8rem;
        gap: 12px;
    }

    .hero-headline {
        font-size: clamp(58px, 8vw, 90px);
        gap: 10px 14px;
    }

    .hero-pill {
        height: 84px;
        border-radius: 14px;
    }

    .hero-pill img {
        width: 126px;
    }

    .hero-badge {
        height: 84px;
        width: 176px;
        border-radius: 14px;
    }

    .hero-sub {
        font-size: 0.96rem;
        width: 68%;
        margin: 16px 0 30px;
    }

    .hero-ctas {
        flex-direction: row;
        gap: 14px;
        margin-bottom: 44px;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline {
        padding: 10px 14px 10px 28px;
        font-size: 0.9rem;
    }

    .section-full {
        padding: 68px 44px;
    }

    .section-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(44px, 6vw, 80px);
    }

    .section-desc {
        max-width: 38%;
        font-size: 0.84rem;
    }

    .services-grid .row {
        flex-direction: row;
        gap: 16px;
    }

    .service-card {
        width: 33%;
    }

    .stats-bar {
        padding: 48px 44px;
    }

    .stats-inner {
        gap: 64px;
    }

    .stat-num {
        font-size: 5.5rem;
    }

    .proven-section {
        padding: 68px 44px;
        max-width: 100%;
    }

    .proven-header {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 44px;
    }

    .proven-header .section-title {
        max-width: 380px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .portfolio-item h3 {
        font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    }

    .view-portfolio {
        text-align: right;
    }

    .clients-bar {
        padding: 36px 44px;
    }

    .client-logo {
        width: 145px;
    }
}

/* ── iPad portrait at 768px ── */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {

    .hero-headline {
        font-size: clamp(64px, 9vw, 88px);
    }

    .hero-pill {
        height: 82px;
    }

    .hero-pill img {
        width: 122px;
    }

    .hero-badge {
        height: 82px;
        width: 168px;
    }

    .hero-sub {
        width: 68%;
    }

    .hero-ctas {
        flex-direction: row;
        width: auto;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline {
        width: auto;
        justify-content: flex-start;
    }

    .services-grid .row {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 14px;
    }

    .service-card {
        width: 33%;
    }

    .stats-inner {
        flex-direction: row;
        gap: 60px;
    }

    .stats-bar .sep-line {
        width: 2px;
        height: auto;
    }

    .stat-num {
        font-size: 5.2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .proven-header {
        flex-direction: row;
    }

    .proven-header .section-title {
        max-width: 340px;
    }
}

/* ── Global mobile helpers ── */
@media (max-width: 1023px) {

    .portfolio-item .proj-img img,
    .hero-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    body {
        overflow-x: hidden;
    }

    .hero-gallery {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .hero-gallery-item {
        scroll-snap-align: start;
    }
}

