.works-page {
    background: #f6f8fb;
}



/*********************************/
/* HERO */
/*********************************/

.works-hero {
    height: 420px;
    background: linear-gradient( rgba(255,255,255,.70), rgba(255,255,255,.70) ), url("assets/yokohama.png");
    background-size: cover;
    background-position: center;
    position: relative;
}


.breadcrumb {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
    font-size: 12px;
}


.hero-content {
    max-width: 1200px;
    margin: auto;
    padding: 20px 20px;
}


.hero-text h1 {
    font-size: 80px;
    color: #004ca5;
    margin-bottom: 20px;
    margin-top: -50px;
}


.hero-text h2 {
    font-size: 42px;
    color: #004ca5;
    margin-bottom: 20px;
}


.hero-text p {
    max-width: 600px;
    line-height: 2;
}



/*********************************/
/* SECTION */
/*********************************/

.works-section {
    max-width: 1400px;
    margin: auto;
    padding: 60px 20px;
}


.section-title {
    text-align: center;
    margin-bottom: 40px;
}


    .section-title h2 {
        color: #004ca5;
        font-size: 42px;
    }


        .section-title h2::after {
            content: "";
            display: block;
            width: 70px;
            height: 4px;
            background: #004ca5;
            margin: 20px auto;
        }



/*********************************/
/* PROJECTS */
/*********************************/

.project-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}


.project-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
    transition: .3s;
}


    .project-card:hover {
        transform: translateY(-6px);
    }


    .project-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }


.card-body {
    padding: 25px;
}


    .card-body h3 {
        color: #004ca5;
        margin-bottom: 15px;
    }



/*********************************/
/* CLIENTS */
/*********************************/

.client-bank-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}


.client-box,
.bank-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}


.client-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}


    .client-list div {
        padding: 15px;
        border: 1px solid #e8edf7;
        border-radius: 10px;
        text-align: center;
        font-weight: 700;
    }



.bank-table {
    width: 100%;
    border-collapse: collapse;
}


    .bank-table td {
        padding: 20px;
        border-bottom: 1px solid #e8edf7;
    }



/*********************************/
/* CTA */
/*********************************/

.works-cta {
    max-width: 1200px;
    margin: 60px auto 100px;
    padding: 70px;
    border-radius: 20px;
    text-align: center;
    color: white;
    background: linear-gradient( 90deg, #004197, #0063be );
}


    .works-cta h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }


    .works-cta p {
        margin-bottom: 30px;
    }


    .works-cta .contact-button {
        background: white;
        color: #004ca5;
    }



/*********************************/
/* MOBILE */
/*********************************/

@media(max-width:1100px) {

    .project-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .client-bank-grid {
        grid-template-columns: 1fr;
    }
}


@media(max-width:768px) {

    .project-grid {
        grid-template-columns: 1fr;
    }

    .client-list {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 52px;
    }

    .hero-text h2 {
        font-size: 32px;
    }
}
.bank-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .bank-info img {
        width: 40px;
        height: auto;
        object-fit: contain;
    }


@media(max-width:640px){

  /* HERO */
  .works-hero {
    height: 300px;
    background-position: center;
  }

  .breadcrumb {
    padding: 20px 16px;
    font-size: 10px;
  }

  .hero-content {
    padding: 10px 16px;
  }

  .hero-text h1 {
    font-size: 40px;
    margin-top: -20px;
  }

  .hero-text h2 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
  }

  /* SECTION */
  .works-section {
    padding: 40px 16px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title h2::after {
    width: 50px;
    height: 3px;
    margin: 14px auto;
  }

  /* PROJECT GRID */
  .project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card img {
    height: 160px;
  }

  .card-body {
    padding: 18px;
  }

  .card-body h3 {
    font-size: 18px;
  }

  /* CLIENTS */
  .client-bank-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .client-list {
    grid-template-columns: 1fr;
  }

  .client-box,
  .bank-box {
    padding: 24px;
  }

  .client-list div {
    font-size: 14px;
    padding: 12px;
  }

  .bank-table td {
    padding: 14px;
    font-size: 14px;
  }

  .bank-info img {
    width: 32px;
  }

  /* CTA */
  .works-cta {
    padding: 40px 20px;
    margin: 40px auto 60px;
  }

  .works-cta h2 {
    font-size: 24px;
  }

  .works-cta p {
    font-size: 14px;
  }

  .works-cta .contact-button {
    font-size: 16px;
    padding: 12px 26px;
  }
}
